Skip to content

Instantly share code, notes, and snippets.

@dmp1ce
Created March 16, 2017 02:23
Show Gist options
  • Save dmp1ce/f241f301e62c1125e11037cf675657d6 to your computer and use it in GitHub Desktop.
Save dmp1ce/f241f301e62c1125e11037cf675657d6 to your computer and use it in GitHub Desktop.
docker-compose.yml for Deluge service
version: "2"
services:
deluge-openvpn:
restart: always
image: binhex/arch-delugevpn
cap_add:
- NET_ADMIN
ports:
- "8112:8112"
# - "8118:8118"
- "58846:58846"
volumes:
- /mnt/data/deluge/data:/data
- /mnt/data/deluge/config:/config
- /etc/localtime:/etc/localtime:ro
environment:
- VPN_ENABLED=yes
# - VPN_USER=xxxx
# - VPN_PASS=xxxx
- VPN_REMOTE=america.vpn.airdns.org
- VPN_PORT=443
- VPN_PROTOCOL=udp
- VPN_DEVICE_TYPE=tun
- VPN_PROV=airvpn
- STRONG_CERTS=no
- ENABLE_PRIVOXY=no
- LAN_NETWORK=192.168.1.0/24
- NAME_SERVERS=8.8.8.8,8.8.4.4
- DEBUG=false
- PUID=1008
- PGID=1009
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment