Nothing to see here folks...
services:
openvpn:
image: openvpn-server:1.0
cap_add:
- NET_ADMIN
ports:
- "1194:1194/udp"
# volumes:
# - ./config:/etc/openvpn
devices:
- /dev/net/tun:/dev/net/tun
networks:
- vpn-network
- default
test-host:
image: test-box:1.0
container_name: test-host
command: sleep 9600 # Keep the container running for testing purposes
networks:
- vpn-network
depends_on:
- openvpn
networks:
vpn-network:
internal: true