Skip to content

Latest commit

 

History

History
26 lines (13 loc) · 668 Bytes

README.md

File metadata and controls

26 lines (13 loc) · 668 Bytes

Docker image for SoftEther VPN

This will deploy a fully functional SoftEther VPN server as a docker image.

Available on Docker Hub.

Download

docker pull bravado/softether

Run

Simplest version:

docker run -d --net host --cap-add NET_ADMIN --device /dev/net/tun --name softether bravado/softether

To keep configuration and logs in a data container:

docker volume create --name softether
docker run -d --net host --cap-add NET_ADMIN --device /dev/net/tun --name softether -v softether:/vpnserver bravado/softether

Using docker-compose:

docker-compose up