Created
March 16, 2017 02:23
-
-
Save dmp1ce/f241f301e62c1125e11037cf675657d6 to your computer and use it in GitHub Desktop.
docker-compose.yml for Deluge service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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