From c3b684c3c6aff03701dea697fa1a9f33fed00b9c Mon Sep 17 00:00:00 2001 From: Rajdeep Bhavanarushi <135720426+rajdeepcoder10@users.noreply.github.com> Date: Thu, 22 Jan 2026 01:28:22 +0530 Subject: [PATCH] Revise IPv6 networking documentation Updated the IPv6 documentation with a warning about using reserved prefixes. --- content/manuals/engine/daemon/ipv6.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/manuals/engine/daemon/ipv6.md b/content/manuals/engine/daemon/ipv6.md index 57c7dd30b1a0..2ceaf412e6f4 100644 --- a/content/manuals/engine/daemon/ipv6.md +++ b/content/manuals/engine/daemon/ipv6.md @@ -1,4 +1,4 @@ ---- +image--- title: Use IPv6 networking weight: 20 description: How to enable IPv6 support in the Docker daemon @@ -23,6 +23,9 @@ IPv6 is only supported on Docker daemons running on Linux hosts. ```console $ docker network create --ipv6 --subnet 2001:db8::/64 ip6net ``` +> ⚠️ **Note:** The IPv6 prefix `2001:db8::/64` is reserved for documentation and examples only. +> When configuring real environments, replace it with a valid IPv6 subnet allocated to your network. + - Using a Docker Compose file: