No description
Find a file
Pierre-Olivier Mercier a25c363582
All checks were successful
ci/woodpecker/push/woodpecker/1 Pipeline was successful
ci/woodpecker/push/woodpecker/2 Pipeline was successful
Add CI/CD
2025-07-18 16:21:42 +02:00
.drone-manifest.yml Add CI/CD 2025-07-18 16:21:42 +02:00
.woodpecker.yaml Add CI/CD 2025-07-18 16:21:42 +02:00
Dockerfile Initial commit 2025-07-18 16:04:27 +02:00
entrypoint.sh Initial commit 2025-07-18 16:04:27 +02:00
README.md Initial commit 2025-07-18 16:04:27 +02:00

OpenVPN client for FDN VPN

You can use this container to join the FDN VPN inside a container.

Basic usage:

read -s -p "VPN Password: " VPN_PASSWORD; export VPN_PASSWORD="${VPN_PASSWORD}"
docker run --name fdn-router --rm --cap-add NET_ADMIN -e VPN_USERNAME=username@vpn.fdn.fr -e VPN_PASSWORD --device /dev/net/tun:/dev/net/tun nemunaire/openvpn-fdn

You can then create futher containers in the same network stack:

docker run --rm -it --network container:fdn-router alpine