diff --git a/lsio/wireguard/docker-compose.yaml b/lsio/wireguard/docker-compose.yaml index 9a9ec2d..12515e3 100644 --- a/lsio/wireguard/docker-compose.yaml +++ b/lsio/wireguard/docker-compose.yaml @@ -37,6 +37,8 @@ services: - INTERNAL_SUBNET=10.13.13.0 # optional # The IPs/Ranges that the peers will be able to reach using the VPN connection. If not specified the default value is: '0.0.0.0/0, ::0/0' This will cause ALL traffic to route through the VPN, if you want split tunneling, set this to only the IPs you would like to use the tunnel AND the ip of the server's WG ip, such as 10.13.13.1. - ALLOWEDIPS=0.0.0.0/0 # optional + # Generated QR codes will be displayed in the docker log. Set to `false` to skip log output. + - LOG_CONFS=true # optional volumes: # Contains all relevant configuration files. - ${BASEDIR:-/volume1/docker}/wireguard/config:/config diff --git a/lsio/wireguard/docker-run.sh b/lsio/wireguard/docker-run.sh index a85af1d..6c3c994 100644 --- a/lsio/wireguard/docker-run.sh +++ b/lsio/wireguard/docker-run.sh @@ -23,6 +23,7 @@ docker run -d \ -e PEERDNS=auto `# optional` `# DNS server set in peer/client configs (can be set as `8.8.8.8`). Used in server mode. Defaults to `auto`, which uses wireguard docker host's DNS via included CoreDNS forward.` \ -e INTERNAL_SUBNET=10.13.13.0 `# optional` `# Internal subnet for the wireguard and server and peers (only change if it clashes). Used in server mode.` \ -e ALLOWEDIPS=0.0.0.0/0 `# optional` `# The IPs/Ranges that the peers will be able to reach using the VPN connection. If not specified the default value is: '0.0.0.0/0, ::0/0' This will cause ALL traffic to route through the VPN, if you want split tunneling, set this to only the IPs you would like to use the tunnel AND the ip of the server's WG ip, such as 10.13.13.1.` \ + -e LOG_CONFS=true `# optional` `# Generated QR codes will be displayed in the docker log. Set to `false` to skip log output.` \ -p 51820:51820/udp `# wireguard port` \ -v ${BASEDIR:-/volume1/docker}/wireguard/config:/config `# Contains all relevant configuration files.` \ -v /lib/modules:/lib/modules `# Maps host's modules folder.` \