Skip to content

Commit

Permalink
Create 40-deluge-beta.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
TechPerplexed authored Nov 19, 2018
1 parent 1eee517 commit c47fe93
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions scripts/components/40-deluge-beta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#
# Deluge - Torrent download engine
#
deluge:
restart: unless-stopped
image: sinaptika/deluge
container_name: deluge
hostname: deluge
cpu_shares: 1024
ports:
- 50100:50100/tcp
- 50100:50100/udp
- 58846:58846/tcp
volumes:
- /etc/localtime:/etc/localtime:ro
- ${CONFIGS}/Deluge:/config
- ${DOWNLOADS}:/Downloads
- ${GOOGLE}:/Media
environment:
- PUID=${USERID}
- PGID=${GROUPID}
- TZ=${TIMEZONE}
- UMASK_SET=022
- VIRTUAL_HOST=deluge.${MYDOMAIN}
- VIRTUAL_PORT=8112
- VIRTUAL_NETWORK=nginx-proxy
- LETSENCRYPT_HOST=deluge.${MYDOMAIN}
- LETSENCRYPT_EMAIL=${MYEMAIL}
healthcheck:
test: ["CMD-SHELL", "netstat -ntlp | grep :8112"]
interval: 10s
timeout: 2s
retries: 3

0 comments on commit c47fe93

Please sign in to comment.