File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ #
2+ # Deluge - Torrent download engine
3+ #
4+ deluge :
5+ restart : unless-stopped
6+ image : sinaptika/deluge
7+ container_name : deluge
8+ hostname : deluge
9+ cpu_shares : 1024
10+ ports :
11+ - 50100:50100/tcp
12+ - 50100:50100/udp
13+ - 58846:58846/tcp
14+ volumes :
15+ - /etc/localtime:/etc/localtime:ro
16+ - ${CONFIGS}/Deluge:/config
17+ - ${DOWNLOADS}:/Downloads
18+ - ${GOOGLE}:/Media
19+ environment :
20+ - PUID=${USERID}
21+ - PGID=${GROUPID}
22+ - TZ=${TIMEZONE}
23+ - UMASK_SET=022
24+ - VIRTUAL_HOST=deluge.${MYDOMAIN}
25+ - VIRTUAL_PORT=8112
26+ - VIRTUAL_NETWORK=nginx-proxy
27+ - LETSENCRYPT_HOST=deluge.${MYDOMAIN}
28+ - LETSENCRYPT_EMAIL=${MYEMAIL}
29+ healthcheck :
30+ test : ["CMD-SHELL", "netstat -ntlp | grep :8112"]
31+ interval : 10s
32+ timeout : 2s
33+ retries : 3
You can’t perform that action at this time.
0 commit comments