diff options
author | Ting-Yu Wang <anivia@google.com> | 2020-07-13 17:01:04 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-13 17:02:32 -0700 |
commit | 87c33be9af4ab8d80cd20dc58fe843e2eb5e4136 (patch) | |
tree | 9a9567f82d354442bc101e7212deca35445fc785 | |
parent | c5d827d1104b6829d034e79261423daf2aa5227c (diff) |
Enable experimental features in docker.
PiperOrigin-RevId: 321062975
-rwxr-xr-x | tools/vm/ubuntu1604/30_docker.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/vm/ubuntu1604/30_docker.sh b/tools/vm/ubuntu1604/30_docker.sh index 36e55abd2..d393133e4 100755 --- a/tools/vm/ubuntu1604/30_docker.sh +++ b/tools/vm/ubuntu1604/30_docker.sh @@ -53,9 +53,11 @@ while true; do fi done +# Enable experimental features, for cross-building aarch64 images. # Enable Docker IPv6. cat > /etc/docker/daemon.json <<EOF { + "experimental": true, "fixed-cidr-v6": "2001:db8:1::/64", "ipv6": true } |