Skip to content

๐Ÿ” Out of the box stateless openvpn-server docker image which starts in less than 2 seconds

License

Notifications You must be signed in to change notification settings

gitter-badger/docker-openvpn-1

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

95 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation


Build Status Build Time Docker Pulls

๐Ÿ”Docker-OpenVPN

Out of the box stateless openvpn server docker image which starts in just a few seconds and doesn't require presistent storage.

GitHub repo:

https://github.com/alekslitvinenk/docker-openvpn

DockerHub repo:

https://hub.docker.com/r/alekslitvinenk/openvpn

Video Guide ๐Ÿ“น


Quick Start ๐Ÿš€

Prerequisites:

  1. Any hardware or vps server running Linux. You should have administrative rights on this machine.
  2. Docker installation on your server.
  3. Public ip address assigned to your server.

1. Run docker-openvpn

If you know which ip address was assigned to your server, pass it in environment variable:

docker run --privileged -it --rm --name dockovpn -p 1194:1194/udp -p 8080:8080/tcp -e HOST_ADDR=<your_host_public_ip> alekslitvinenk/openvpn

If you don't know you server's ip adress, use the code below to launch you docker-openvpn:

docker run --privileged -it --rm --name dockovpn -p 1194:1194/udp -p 8080:8080/tcp -e HOST_ADDR=$(curl -s https://api.ipify.org) alekslitvinenk/openvpn

โ„น๏ธ Note: --privileged flag is required to do manipulations with iptables and to setup a flag, that allows traffic forwarding in sysctl.conf.
We will try to get rid of this flag in the future releases of docker-openvpn.

If everything went well, you should be able to see the following output in your console:

Sun Jun  9 08:56:11 2019 Initialization Sequence Completed
Sun Jun  9 08:56:12 2019 Client.ovpn file has been generated
Sun Jun  9 08:56:12 2019 Config server started, download your client.ovpn config at http://example.com:8080/
Sun Jun  9 08:56:12 2019 NOTE: After you download you client config, http server will be shut down!

2. Get client configuration

Now, when your docker-openvpn is up and running you can go to <your_host_public_ip>:8080 on your device and download ovpn client configuration. As soon as you have your config file downloaded, you will see the following output in the console:

Sun Jun  9 09:01:15 2019 Config http server has been shut down

Import client.ovpn into your favourite openvpn client. In most cases it should be enough to just doubleclick or tap on that file.

3. Connect to your docker-openvpn container

You should be able to see your newly added client configuration in the list of available configurations. Click on it, connection process should initiate and be established withing few seconds.

Congratulations, now you're all set and can safely browse the internet.

Known issues

  1. Currently docker-openvpn works only if the default network iterface on the host machine is called eth0. Issue#15

Other resources

Contrubition Guidelines
Code Of Conduct
License Agreement

About

๐Ÿ” Out of the box stateless openvpn-server docker image which starts in less than 2 seconds

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 94.9%
  • Dockerfile 5.1%