forked from bubuntux/nordvpn
-
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.
Merge pull request bubuntux#340 from hbattat/patch-1
Use correct syntax for capabilities
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ This container was designed to be started first to provide a connection to other | |
**NOTE**: More than the basic privileges are needed for NordVPN. With Docker 1.2 or newer, Podman, Kubernetes, etc. you can use the `--cap-add=NET_ADMIN,NET_RAW` option. Earlier versions, or with fig, and you'll have to run it in privileged mode. | ||
|
||
## Starting an NordVPN instance | ||
docker run -ti --cap-add=NET_ADMIN,NET_RAW --name vpn \ | ||
docker run -ti --cap-add=NET_ADMIN --cap-add=NET_RAW --name vpn \ | ||
-e [email protected] -e PASS='pas$word' \ | ||
-e TECHNOLOGY=NordLynx -d ghcr.io/bubuntux/nordvpn | ||
|
||
|
@@ -210,4 +210,4 @@ If you have any problems with or questions about this image, please contact me t | |
|
||
# Disclaimer | ||
This project is independently developed for personal use, there is no affiliation with NordVpn or Nord Security companies, | ||
Nord Security companies are not responsible for and have no control over the nature, content and availability of this project. | ||
Nord Security companies are not responsible for and have no control over the nature, content and availability of this project. |