From 6c702f397acc2ff33f98457494ff3c92c560c6e0 Mon Sep 17 00:00:00 2001 From: Joe Polny Date: Tue, 24 Aug 2021 19:21:37 -0400 Subject: [PATCH] remove --privileged from README example --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0677ede..7d5c9c9 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,15 @@ The container is available from the Docker registry and this is the simplest way To run the container use this command, with additional parameters, please refer to the Variables, Volumes, and Ports section: ``` -$ docker run --privileged -d \ +$ docker run -d \ -v /your/config/path/:/config \ -v /your/downloads/path/:/downloads \ -e "VPN_ENABLED=yes" \ -e "VPN_TYPE=wireguard" \ -e "LAN_NETWORK=192.168.0.0/24" \ -p 8080:8080 \ + --cap-add NET_ADMIN \ + --sysctl "net.ipv4.conf.all.src_valid_mark=1" \ --restart unless-stopped \ dyonr/qbittorrentvpn ```