We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eba228 commit 665cb10Copy full SHA for 665cb10
base/aria2/1.18.8/Dockerfile
@@ -0,0 +1,15 @@
1
+FROM debian:jessie
2
+
3
+MAINTAINER phithon <[email protected]>
4
5
+RUN set -ex \
6
+ && apt-get update \
7
+ && apt-get install -y wget aria2 \
8
+ && apt-get install -y --no-install-recommends cron \
9
+ && mkdir -p /usr/aria2/data/
10
11
+ADD aria2.conf /usr/aria2/aria2.conf
12
13
+CMD set -ex \
14
+ && cron \
15
+ && aria2c --conf-path=/usr/aria2/aria2.conf
base/aria2/1.18.8/aria2.conf
@@ -0,0 +1,11 @@
+dir=/usr/aria2/data
+disable-ipv6=true
+enable-rpc=true
+max-download-limit=0
+max-upload-limit=0
+rpc-allow-origin-all=true
+rpc-listen-all=true
+rpc-listen-port=6800
+rpc-secure=false
+seed-ratio=0
+seed-time=0
0 commit comments