Managed openvpn
686
openvpn in an alpine-based container managed by runit. runit makes sure that your openvpn service stays running!
Just pass in any .ovpn config files mounted at /etc/openvpn and give this container network access and privileges and you're in business:
docker run --rm -d -v /home/user/openvpn:/etc/openvpn:ro -p 1194:1194/udp --cap-add=NET_ADMIN spotlightcybersecurity/openvpn
or for a single file:
docker run --rm -d -v /home/user/openvpn.ovpn:/etc/openvpn/config.ovpn:ro -p 1194:1194/udp --cap-add=NET_ADMIN spotlightcybersecurity/openvpn
Source at https://gitlab.com/SpotlightCybersecurity/docker-openvpn
Content type
Image
Digest
sha256:bda0486c2…
Size
12.8 MB
Last updated
over 1 year ago
docker pull spotlightcybersecurity/openvpn