deluge docker-compose.yml

This commit is contained in:
2022-11-17 23:16:48 +00:00
parent 194a977fc9
commit 2653361486
2 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
version: '3.2'
services:
deluge:
#image: lscr.io/linuxserver/deluge:latest
# image: ebrianne/docker-deluge-openvpn
image: deluge:vahagn
# image: c4f0d093ce57
container_name: deluge
environment:
- OPENVPN_PROVIDER=expressvpn
- OPENVPN_CONFIG=my_expressvpn_germany_-_nuremberg_udp
#- OPENVPN_CONFIG=my_expressvpn_belarus_udp
# - OPENVPN_CONFIG=my_expressvpn_armenia_udp
# - OPENVPN_CONFIG=my_expressvpn_usa_-_lincoln_park_udp
- OPENVPN_USERNAME=r1n1j7kcx3uvierq5gqo2rsq
- OPENVPN_PASSWORD=3b2x1l8ef7evn7hbmrqygg2w
- LOCAL_NETWORK=192.168.0.0/16
- PUID=998
- PGID=998
- TZ=Europe/London
#- DELUGE_LOGLEVEL=error #optional
cap_add:
- NET_ADMIN
sysctls:
- net.ipv6.conf.all.disable_ipv6=1
ports:
- 8112:8112
- 58846:58846
#- 6881:6881/udp
volumes:
- /srv/deluge/config:/config
- /srv/deluge/downloads:/download
restart: unless-stopped