Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 530 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 530 Bytes

dsvpn-docker

This repository is used to build docker images for dsvpn.

View all available image tags, see https://hub.docker.com/r/cofyc/dsvpn/tags.

Example

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.key is your VPN secure key.
  • This command runs in foreground, you can run the container in background by adding -d flag to docker run.