We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eee517 commit c47fe93Copy full SHA for c47fe93
1 file changed
scripts/components/40-deluge-beta.yaml
@@ -0,0 +1,33 @@
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
0 commit comments