Skip to content

Instantly share code, notes, and snippets.

@lobre
Created January 10, 2017 10:34
Show Gist options
  • Save lobre/cfc496a94507408b86e21a1a50b20699 to your computer and use it in GitHub Desktop.
Save lobre/cfc496a94507408b86e21a1a50b20699 to your computer and use it in GitHub Desktop.
Docker compose vpn
version: '2'
services:
server:
image: "jpetazzo/dockvpn"
container_name: "vpn"
privileged: true
ports:
- "1194:1194/udp"
- "443:443/tcp"
config:
image: "jpetazzo/dockvpn"
container_name: "vpn-config"
command: "serveconfig"
ports:
- "8080:8080"
volumes_from:
- "server"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment