Sign inSign up

hellslicer/arm-softether

By hellslicer

Updated almost 11 years ago

SoftEther VPN server for armhf (ARMv7)

Image
1

10K+

hellslicer/arm-softether repository overview

ARM Docker image for SoftEther VPN

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

Download

docker pull hellslicer/arm-softether

Run

Simplest version:

docker run -d --net host --name softether hellslicer/arm-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 hellslicer/arm-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 hellslicer/arm-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 hellslicer/arm-softether

Tag summary

Content type

Image

Digest

sha256:b34d5c333

Size

75.2 MB

Last updated

almost 11 years ago

docker pull hellslicer/arm-softether