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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
9 additions and
1 deletions
-
README.md
-
entrypoint.sh
|
|
@ -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 |
|
|
|
``` |
|
|
|
|
|
@ -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}')" |
|
|
|