启用docker上ipv6的bridge网络
https://github.com/nextcloud/all-in-one/blob/main/docker-ipv6-support.md
在 /etc/docker/daemon.json
中添加以下4行代码。如果原来有内容,要特别注意英文逗号,各个字段之间用英文逗号分隔,最后一个字段末尾不需要英文逗号
{
"ipv6": true,
"fixed-cidr-v6": "fd12:3456:789a:1::/64",
"experimental": true,
"ip6tables": true
}
重启docker,systemctl restart docker
,或者重启机器