From 08e779f9f1265ce0a9171b0cb783b1bd5bbfb65e Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Tue, 13 May 2025 23:06:54 +0800 Subject: [PATCH] docs: ipv6 --- docs/guide/qa/index.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/guide/qa/index.md b/docs/guide/qa/index.md index eae66615..7c5050dc 100644 --- a/docs/guide/qa/index.md +++ b/docs/guide/qa/index.md @@ -16,4 +16,22 @@ services: # # ↓↓↓↓ ------- # 如果你服务器部署在国外,可以用这个替换上面阿里云的公共dns # - 8.8.8.8 # 谷歌公共dns # - 8.8.4.4 -``` \ No newline at end of file +``` + + +## 2. 连接IPv6超时 +docker-compose 需要放开IPv6网络的配置 +```yaml +services: + certd: + networks: + - ip6net +# ↓↓↓↓ -------------------------------------------------------------- 启用ipv6网络,还需要把上面networks的注释放开 +networks: + ip6net: + enable_ipv6: true + ipam: + config: + - subnet: 2001:db8::/64 + +```