Browse Source

Merge pull request #3 from bobbypage/privileged

Remove need for running in privileged mode
pull/8/head
Jordan Potter 5 years ago
committed by GitHub
parent
commit
f0d786c382
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      README.md
  2. 6
      entrypoint.sh

4
README.md

@ -9,7 +9,9 @@ Now simply mount the configuration file and run! For example, if your configurat
```bash
docker run --name wireguard \
--privileged \
--cap-add NET_ADMIN \
--cap-add SYS_MODULE \
--sysctl net.ipv4.conf.all.src_valid_mark=1 \
-v /path/to/conf/mullvad.conf:/etc/wireguard/mullvad.conf \
jordanpotter/wireguard
```

6
entrypoint.sh

@ -11,6 +11,12 @@ fi
config=`echo $configs | head -n 1`
interface="${config%.*}"
if [[ "$(cat /proc/sys/net/ipv4/conf/all/src_valid_mark)" != "1" ]]; then
echo "sysctl net.ipv4.conf.all.src_valid_mark=1 is not set" >&2
exit 1
fi
sed -i "s:sysctl -q net.ipv4.conf.all.src_valid_mark=1:echo skipping setting net.ipv4.conf.all.src_valid_mark:" /usr/bin/wg-quick
wg-quick up $interface
docker_network="$(ip -o addr show dev eth0 | awk '$3 == "inet" {print $4}')"

Loading…
Cancel
Save