Skip to content

Instantly share code, notes, and snippets.

@dbene
Created May 7, 2018 08:11
Show Gist options
  • Save dbene/779d58fe838c9130e634ebde6856a7d7 to your computer and use it in GitHub Desktop.
Save dbene/779d58fe838c9130e634ebde6856a7d7 to your computer and use it in GitHub Desktop.
pritunl docker-compose
version: '2'
services:
app:
build: .
image: pritunl
container_name: pritunl
privileged: true
tty: true
restart: unless-stopped
links:
- database:database
ports:
- 1195-1199:1195-1199/udp
- 9700:443/tcp
database:
image: mongo
container_name: pritunl_db
restart: unless-stopped
volumes:
- ./mongodb:/data/db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment