Sign inSign up

dtcokr/aria2

By dtcokr

•Updated over 5 years ago
Archived

Using aria2 in docker.

Image
0

1.5K

dtcokr/aria2 repository overview

⁠docker-aria2

Docker Pulls GitHub last commit (branch)

Use aria2 in docker.

Aria2 Source(GitHub)⁠, conf file by P3TERX(GitHub)⁠ which you REALLY should download to custom the settings that suits you. Tracker list by ngosang(GitHub)⁠ and added to conf file by default to improve BT downloading.

⁠Usage

The image with the tag standalone contains a WebUI(AriaNG as above) and can be used directly, and the image with the tag latest needs a WebUI (any Aria2 WebUI such as AriaNG(GitHub)⁠ and webui-aria2(GitHub)⁠ )to control the aria2 or via CLI in docker.

⁠Tag standalone

Using this image would be preferred unless you want to use other web ui's.

Go to http://ip:8989⁠ to control Aria2 using graphics interface. Go to http://ip:8181⁠ to browser file index. Using darkhttpd⁠ as web server.

Change UID and GID if needed.

...
    -e PUID=1000
    -e PGID=1000
...
$ docker run -d \
    -p 6800:6800 \
    -p 8989:8989 \
    -p 8181:8181 \
    -v /path/to/your/aria2.conf:/aria2/aria2.conf \
    -v /path/to/save/file:/downloads \
    -e PUID=1000
    -e PGID=1000
    dtcokr/aria2:standalone
⁠Tag latest

Change UID and GID if needed.

...
    -e PUID=1000
    -e PGID=1000
...
$ docker run -d \
    -p 6800:6800 \
    -v /path/to/your/aria2.conf:/aria2/aria2.conf \
    -v /path/to/save/file:/downloads \
    -e PUID=1000
    -e PGID=1000
    dtcokr/aria2

Tag summary

Content type

Image

Digest

Size

7.5 MB

Last updated

over 5 years ago

docker pull dtcokr/aria2