From 7d62b184fd46af78c96f7b329f93837624ae0bc8 Mon Sep 17 00:00:00 2001 From: Baobhan Sith <80159437+Heavrnl@users.noreply.github.com> Date: Thu, 1 May 2025 19:03:50 +0800 Subject: [PATCH] Update README_EN.md --- doc/README_EN.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/doc/README_EN.md b/doc/README_EN.md index 943c3fe..4797a3b 100644 --- a/doc/README_EN.md +++ b/doc/README_EN.md @@ -88,6 +88,20 @@ location / { } ``` +To configure IPv6 for Docker, add the following content to `/etc/docker/daemon.json`: +```json +{ + "ipv6": true, + "fixed-cidr-v6": "fd00::/80", + "ip6tables": true, + "experimental": true +} +``` +Then restart the Docker service: +``` +sudo systemctl restart docker +``` + ### 2️⃣ Start the Service ```bash