Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. docker run -d \
  2. --name=delugevpn \
  3. --restart always \
  4. --cap-add=NET_ADMIN \
  5. --label=com.centurylinklabs.watchtower.enable=true \
  6. -v /home/rancher/appdata/delugevpn/config:/config:rw \
  7. -v /home/rancher/appdata/delugevpn/data:/data:rw \
  8. -e VPN_ENABLED=yes \
  9. -e VPN_USER=USERNAME \
  10. -e VPN_PASS=PASSWORD \
  11. -e VPN_PROV=custom \
  12. -e ENABLE_PRIVOXY=yes \
  13. -e LAN_NETWORK=192.168.0.0/16 \
  14. -e NAME_SERVERS=209.222.18.222,37.235.1.174,8.8.8.8,209.222.18.218,37.235.1.177,8.8.4.4 \
  15. -e DEBUG=false \
  16. -e UMASK=000 \
  17. -e PUID=0 \
  18. -e PGID=0 \
  19. -p 8112:8112 \
  20. -p 8118:8118 \
  21. -p 58846:58846 \
  22. -p 58946:58946 \
  23. binhex/arch-delugevpn:latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement