Files
Pritunl-API-crack/docker/docker-compose.yml
2023-05-20 11:59:21 +02:00

35 lines
1.1 KiB
YAML

version: '3'
services:
mongodb:
image: mongo:latest
restart: always
volumes:
- ./mongodb:/data/db
pritunl:
# Use the following to build the image from source (assuming you're running inside the repository).
build:
context: ../server
dockerfile: ../docker/Dockerfile
restart: always
depends_on:
- mongodb
privileged: true
sysctls:
- net.ipv6.conf.all.disable_ipv6=0
links:
- mongodb
volumes:
- /etc/localtime:/etc/localtime:ro
ports:
# Under this port the Pritunl web interface will be exposed (for reverse proxies)
- 9700:9700
# The following are the two default ports for the tcp+udp servers (you may edit these as needed!)
- 1194:1194
- 1194:1194/udp
environment:
- TZ=UTC
- MONGODB_URI=mongodb://mongodb:27017/pritunl
# Also enable reverse proxie capabilities
- REVERSE_PROXY=true