kylemanna / docker-openvpn

🔒 OpenVPN server in a Docker container complete with an EasyRSA PKI CA
https://hub.docker.com/r/kylemanna/openvpn/
MIT License
8.62k stars 2.37k forks source link

Running a Second Fallback TCP Container #702

Open nextcloudfan opened 2 years ago

nextcloudfan commented 2 years ago

Hi,

I set up a container with 1194 UDP, as described here: https://github.com/kylemanna/docker-openvpn

Works fine.

Now I want to set up a Fallback TCP Container, as described here: https://github.com/kylemanna/docker-openvpn/blob/master/docs/tcp.md

But docker run -v $OVPN_DATA:/etc/openvpn --rm -p 443:1194/tcp --cap-add=NET_ADMIN kylemanna/openvpn ovpn_run --proto tcp is not working, thats the first thing. The second is: How to generate config files for this TCP container?

Thanks