├── .dockerignore ├── Dockerfile ├── LICENSE ├── README.md └── bin ├── easyrsa_vars ├── getclient ├── initopenvpn ├── initpki ├── listcerts ├── renewcrl ├── revokeclient └── startopenvpn /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | *.ovpn 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/README.md -------------------------------------------------------------------------------- /bin/easyrsa_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/bin/easyrsa_vars -------------------------------------------------------------------------------- /bin/getclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/bin/getclient -------------------------------------------------------------------------------- /bin/initopenvpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/bin/initopenvpn -------------------------------------------------------------------------------- /bin/initpki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/bin/initpki -------------------------------------------------------------------------------- /bin/listcerts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/bin/listcerts -------------------------------------------------------------------------------- /bin/renewcrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/bin/renewcrl -------------------------------------------------------------------------------- /bin/revokeclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/bin/revokeclient -------------------------------------------------------------------------------- /bin/startopenvpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadoe/docker-openvpn/HEAD/bin/startopenvpn --------------------------------------------------------------------------------