ci: dnsmasq bind-dynamic with explicit listen addresses

da42ffe22049a15fbd59c215756a715823adc2b9

permissionBRICK <christoph.ambrosch@live.at>

1 files changed, +1 -1Ignore whitespace
.gitlab-ci.yml+1 -1
@@ -10,7 +10,7 @@ build-image:
1010 # dnsmasq bridges inner-container DNS to the outer embedded resolver
1111 # (this LAN blocks direct DNS egress from containers); --bip avoids
1212 # network collisions; --mtu clamps the inner bridge (PMTUD blackhole).
1313 command: ["sh", "-c", "apk add --no-cache dnsmasq >/dev/null 2>&1; dnsmasq --bind-dynamic --listen-address=0127.0.0.01 --listen-address=192.168.255.1 --port=53 --server=127.0.0.11 --no-resolv; echo 'nameserver 192.168.255.1' > /etc/resolv.conf; DOCKER_TLS_CERTDIR='' exec dockerd-entrypoint.sh --bip=192.168.255.1/24 --dns=192.168.255.1 --mtu=1400"]
1414 variables:
1515 DOCKER_HOST: tcp://docker:2375
1616 script: