12345678910111213141516171819202122232425262728293031323334353637 |
- version: '3'
- services:
- openvpn:
- build:
- context: .
- dockerfile: Dockerfile.openvpn
- image: openvpn:local
- command: /etc/openvpn/setup/configure.sh
- environment:
- OVPN_SERVER_NET: "192.168.100.0"
- OVPN_SERVER_MASK: "255.255.255.0"
- cap_add:
- - NET_ADMIN
- ports:
- - 7777:1194 # for openvpn
- - 8080:8080 # for ovpn-admin because of network_mode
- volumes:
- - ./easyrsa_master:/etc/openvpn/easyrsa
- - ./ccd_master:/etc/openvpn/ccd
- ovpn-admin:
- build:
- context: .
- image: ovpn-admin:local
- command: /app/ovpn-admin
- environment:
- OVPN_DEBUG: "True"
- OVPN_VERBOSE: "True"
- OVPN_NETWORK: "192.168.100.0/24"
- EASYRSA_PATH: "/mnt/easyrsa"
- OVPN_SERVER: "127.0.0.1:7777:tcp"
- OVPN_INDEX_PATH: "/mnt/easyrsa/pki/index.txt"
- network_mode: service:openvpn
- volumes:
- - ./easyrsa_master:/mnt/easyrsa
- - ./ccd_master:/mnt/ccd
|