How to quickly set up your own personal VPN server with Docker
SoftEther VPN is also a very good option which claims to be faster than OpenVPN SoftEtherVPN CID=$(docker run -d --privileged -p 1194:1194/udp -p 443:443/tcp jpetazzo/dockvpn) docker run --rm -t -i -p 8888:8080 --volumes-from $CID jpetazzo/dockvpn serveconfig Check docker is running: $ docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 88fdb2af8888 jpetazzo/dockvpn:latest "/bin/sh -c run" About a minute ago Up About a minute 0.0.0.0:1194->1194/udp, 8080/tcp, 0.0.0.0:443->443/tcp boring_heisenberg To fetch the config open up a webbrowser and connect to your docker box’s IP on port 8080. You’ll likely get some security errors because this is being served over HTTPS without the correct certificates. It’s safe to ignore these errors. You can save it as “ goyun.info ” or similar. curl -k https://localhost:8888 | tee config....