Advertisement
Guest User

Arch-delugevpn docker-compose.yml

a guest
Sep 28th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.95 KB | None | 0 0
  1. version: "3"
  2. services:
  3.   deluge:
  4.     image: binhex/arch-delugevpn
  5.     container_name: deluge
  6.     restart: on-failure
  7.     cap_add:
  8.      - NET_ADMIN
  9.     ports:
  10.      - "58846:58846"
  11.       - "58946:58946"
  12.       - "56318:56318"
  13.       - "61884:56318"
  14.     networks:
  15.      - plexnet
  16.     environment:
  17.      - PUID=1000
  18.       - PGID=1000
  19.       - VPN_ENABLED=yes
  20.       - VPN_USER=${VPN_USERNAME}
  21.       - VPN_PASS=${VPN_PASSWORD}
  22.       - VPN_REMOTE=nl.privateinternetaccess.com
  23.       - VPN_PORT=1198
  24.       - VPN_PROTOCOL=udp
  25.       - VPN_DEVICE_TYPE=tun
  26.       - VPN_PROV=pia
  27.       - STRONG_CERTS=no
  28.       - ENABLE_PRIVOXY=no
  29.       - STRICT_PORT_FORWARD=yes
  30.       - LAN_NETWORK=158.12.54.99/32
  31.       - NAME_SERVERS=8.8.8.8,8.8.4.4
  32.       - DEBUG=false
  33.       - UMASK=000
  34.     volumes:
  35.      - /etc/localtime:/etc/localtime:ro
  36.       - ${CONFIG_FOLDER}/Deluge:/config
  37.       - ${MOUNT_POINT}/downloads:/data
  38.  
  39. networks:
  40.   plexnet:
  41.     driver: bridge
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement