项目作者: beginor

项目描述 :
aria2 and httpd (busybox) in docker
高级语言: Dockerfile
项目地址: git://github.com/beginor/docker-aria2.git
创建时间: 2017-10-28T03:44:35Z
项目社区:https://github.com/beginor/docker-aria2

开源协议:

下载


docker-aria2

aria2 and httpd (busybox), you can use any webui as you like!

Sample usage:

1. Get the image

Pull from docker hub

  1. docker pull beginor/aria2:1.35.0

Or build it

  1. https://github.com/beginor/docker-aria2.git aria2
  2. cd aria2
  3. ./build.sh

2. Download your favorite web ui of aria2 (test with webui-aria2 and AriaNg) , and extract it to a webui folder.

3. Create a docker-compose.yml like this, and you can change it as you like:

  1. version: "3"
  2. services:
  3. aria2:
  4. image: beginor/aria2:1.35.0
  5. container_name: aria2
  6. ports:
  7. - 6800:6800 # aria2 rpc port
  8. - 6880:6880 # http port
  9. volumes:
  10. # - ./aria2.conf:/aria2/aria2.conf
  11. # - ./httpd.conf:/aria2/httpd.conf
  12. - ./webui:/aria2/webui
  13. - ~/Downloads:/aria2/downloads

4. Run and enjoy with http://localhost:6880/:

  1. docker-compose up -d