Sign inSign up

zhongpei/softether-server

By zhongpei

•Updated over 9 years ago

softether-server

Image
0

481

zhongpei/softether-server repository overview

⁠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 frosquin/softether

⁠Run

Simplest version:

docker run -d --net host --name softether frosquin/softether

With external config file:

touch /etc/vpnserver/vpn_server.config
docker run -d -v /etc/vpnserver/vpn_server.config:/usr/local/vpnserver/vpn_server.config --net host --name softether frosquin/softether

If you want to keep the logs in a data container:

docker run -d --name softether-logs --volume /var/log/vpnserver busybox:latest /bin/true
docker run -d --net host --name softether --volumes-from softether-logs frosquin/softether

All together now:

touch /etc/vpnserver/vpn_server.config
docker run -d --name softether-logs --volume /var/log/vpnserver busybox:latest /bin/true
docker run -d -v /etc/vpnserver/vpn_server.config:/usr/local/vpnserver/vpn_server.config --volumes-from softether-logs --net host --name softether frosquin/softether

Tag summary

Content type

Image

Digest

Size

59.7 MB

Last updated

over 9 years ago

docker pull zhongpei/softether-server