This repository is used to build docker images for dsvpn.
View all available image tags, see https://hub.docker.com/r/cofyc/dsvpn/tags.
docker run --name dsvpn.service \
  --network host \
  --privileged \
  -v /etc/dsvpn.key:/etc/dsvpn.key \
  cofyc/dsvpn:latest \
  server /etc/dsvpn.key auto 443
/etc/dsvpn.keyis your VPN secure key.- This command runs in foreground, you can run the container in background by adding 
-dflag todocker run.