36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
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
|
|
|