ovpn-admin/docker-compose.yaml

43 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2020-10-15 12:12:31 -04:00
version: '3'
services:
openvpn:
2020-10-29 06:50:19 -04:00
build:
context: .
dockerfile: Dockerfile.openvpn
2020-10-15 12:12:31 -04:00
image: openvpn:local
command: /etc/openvpn/setup/configure.sh
environment:
OVPN_SERVER_NET: "192.168.100.0"
OVPN_SERVER_MASK: "255.255.255.0"
OVPN_PASSWD_AUTH: "true"
2020-10-29 06:50:19 -04:00
cap_add:
- NET_ADMIN
2020-10-15 12:12:31 -04:00
ports:
- 7777:1194 # for openvpn
2021-03-17 05:05:37 -04:00
- 8080:8080 # for ovpn-admin because of network_mode
2020-10-15 12:12:31 -04:00
volumes:
- ./easyrsa_master:/etc/openvpn/easyrsa
- ./ccd_master:/etc/openvpn/ccd
2021-03-17 05:05:37 -04:00
ovpn-admin:
2020-10-15 12:12:31 -04:00
build:
context: .
2021-03-17 05:05:37 -04:00
image: ovpn-admin:local
command: /app/ovpn-admin
environment:
OVPN_DEBUG: "true"
OVPN_VERBOSE: "true"
OVPN_NETWORK: "192.168.100.0/24"
OVPN_CCD: "true"
OVPN_CCD_PATH: "/mnt/ccd"
EASYRSA_PATH: "/mnt/easyrsa"
OVPN_SERVER: "127.0.0.1:7777:tcp"
OVPN_INDEX_PATH: "/mnt/easyrsa/pki/index.txt"
OVPN_AUTH: "true"
OVPN_AUTH_DB_PATH: "/mnt/easyrsa/pki/users.db"
LOG_LEVEL: "debug"
network_mode: service:openvpn
2020-10-15 12:12:31 -04:00
volumes:
- ./easyrsa_master:/mnt/easyrsa
- ./ccd_master:/mnt/ccd