diff options
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | docker-compose.yml | 5 |
2 files changed, 10 insertions, 2 deletions
@@ -44,3 +44,10 @@ Debian: ```console $ chown -R nobody:nogroup dnscrypt-proxy ``` + +## Troubleshooting + +```console +export COMPOSE_HTTP_TIMEOUT=600 +export DOCKER_CLIENT_TIMEOUT=5000 +``` diff --git a/docker-compose.yml b/docker-compose.yml index d9ed166..509211c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -43,7 +43,7 @@ services: - dnscrypt wireguard: - image: linuxserver/wireguard + image: index.docker.io/rusian/wireguard:latest networks: containers: ipv4_address: 172.20.0.7 @@ -59,7 +59,8 @@ services: - SERVERPORT=51820 #optional - PEERS=10 #optional - PEERDNS=auto #optional - - INTERNAL_SUBNET=10.13.13.0 #optional + - INTERNAL_SUBNET_IPV4=10.13.13.0 #optional + - INTERNAL_SUBNET_IPV6=fd42:42:42::0 #optional volumes: - ./wireguard:/config - /lib/modules:/lib/modules |