Skip to content

Instantly share code, notes, and snippets.

@bullgare
Forked from stamm/docker-compose.json
Created April 28, 2018 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bullgare/faaf9e5e8f37fba01c29adaadbb22a40 to your computer and use it in GitHub Desktop.
Save bullgare/faaf9e5e8f37fba01c29adaadbb22a40 to your computer and use it in GitHub Desktop.
Docker compose for vpn and socks proxy
version: "3"
services:
sockd:
image: stamm/docker-dante:1.0
env_file: socks.env
ports:
- "8088:8088"
restart: always
vpn:
image: "hwdsl2/ipsec-vpn-server"
env_file: vpn.env
volumes:
- "/lib/modules:/lib/modules:ro"
ports:
- "500:500/udp"
- "4500:4500/udp"
privileged: true
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment