disable IPv6 globally on docker build (#13724)

This commit is contained in:
3nprob 2021-11-22 21:56:06 +00:00 committed by GitHub
parent 08f4a0a816
commit d0515031c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=1
sudo sysctl net.ipv6.conf.all.disable_ipv6=0
release=$(git describe --abbrev=0 --tags)
@ -44,4 +44,4 @@ docker buildx build --push --no-cache \
docker buildx prune -f
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=0
sudo sysctl net.ipv6.conf.all.disable_ipv6=0