This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathDockerfile
42 lines (42 loc) · 3.87 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
FROM linuxserver/deluge:latest
LABEL org.freenas.interactive="false" \
org.freenas.version="1.3.15" \
org.freenas.upgradeable="true" \
org.freenas.expose-ports-at-host="true" \
org.freenas.autostart="true" \
org.freenas.web-ui-protocol="http" \
org.freenas.web-ui-port=8112 \
org.freenas.web-ui-path="" \
org.freenas.port-mappings="8112:8112/tcp,58846:58846/tcp,58946:58946/tcp,58946:58946/udp" \
org.freenas.volumes="[ \
{ \
\"name\": \"/config\", \
\"descr\": \"Config storage space\" \
}, \
{ \
\"name\": \"/downloads\", \
\"descr\": \"Downloads volume\" \
} \
]" \
org.freenas.settings="[ \
{ \
\"env\": \"TZ\", \
\"descr\": \"Timezone - eg Europe/London\", \
\"optional\": true \
}, \
{ \
\"env\": \"PGID\", \
\"descr\": \"GroupID\", \
\"optional\": true \
}, \
{ \
\"env\": \"PUID\", \
\"descr\": \"UserID\", \
\"optional\": true \
}, \
{ \
\"env\": \"UMASK_SET\", \
\"descr\": \"UMASK, default 022\", \
\"optional\": true \
} \
]"