-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
# openvpn-server-easy-docker | ||
OpenVPN Server in a Docker container that is easy to setup. | ||
### _OpenVPN Server in a Docker container that is easy to setup_ | ||
|
||
## Quick Start | ||
Run the docker container: | ||
```sh | ||
docker run --name openvpn-server-easy -p 1194:1194/udp --device=/dev/net/tun --cap-add=NET_ADMIN warfront1osed/openvpn-server-easy:latest | ||
``` | ||
Obtain the client's required connection files: | ||
```sh | ||
docker cp openvpn-server-easy:/client_credentials/. ./ | ||
``` | ||
Connect to the VPN using the client's required connection files on your preferred OpenVpn client. |