Browse Source

disable IPv6 globally on docker build (#13724)

pull/13734/head
3nprob 4 years ago
committed by GitHub
parent
commit
d0515031c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      docker-buildx.sh

4
docker-buildx.sh

@ -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
Loading…
Cancel
Save