Dockerfile for OpenVPN, an open source VPN daemon. Based on Alpine Linux.
Since this image is packages just has been installed, you need to specify the valid configuration file yourself.
$ docker run --rm \
--cap-add NET_ADMIN \
--device /dev/net/tun \
-v $(pwd)/openvpn.conf:/openvpn.conf \
t13a/openvpn
You can also add files and set command line arguments.
$ docker run --rm \
...
-v $(pwd)/account.txt:/account.txt \
...
t13a/openvpn \
openvpn \
--config /openvpn.conf \
--auth-user-pass /account.txt
Content type
Image
Digest
Size
3.5 MB
Last updated
about 8 years ago
docker pull t13a/openvpn