Created
January 10, 2017 10:34
-
-
Save lobre/cfc496a94507408b86e21a1a50b20699 to your computer and use it in GitHub Desktop.
Docker compose vpn
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: | |
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