SoftEther VPN server for armhf (ARMv7)
10K+
This will deploy a fully functional SoftEther VPN server as a docker image.
docker pull hellslicer/arm-softether
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
Content type
Image
Digest
sha256:b34d5c333…
Size
75.2 MB
Last updated
almost 11 years ago
docker pull hellslicer/arm-softether