Skip to content

Commit c47fe93

Browse files
Create 40-deluge-beta.yaml
1 parent 1eee517 commit c47fe93

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)