From f5d707730d3cc2530f3761601ed6e22da4c8a2cc Mon Sep 17 00:00:00 2001 From: Andreas Heck Date: Thu, 25 Jul 2024 17:04:45 +0200 Subject: [PATCH] Update docs for host net IPv6 support (#20473) --- content/network/drivers/host.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/network/drivers/host.md b/content/network/drivers/host.md index 0b0af9f186..182bcbc252 100644 --- a/content/network/drivers/host.md +++ b/content/network/drivers/host.md @@ -85,14 +85,14 @@ $ nc localhost 80 ### Limitations +- Processes inside the container cannot bind to the IP addresses of the host + because the container has no direct access to the interfaces of the host. - The host network feature of Docker Desktop works on layer 4. This means that unlike with Docker on Linux, network protocols that operate below TCP or UDP are not supported. - This feature doesn't work with Enhanced Container Isolation enabled, since isolating your containers from the host and allowing them access to the host network contradict each other. -- IPv6 is not yet supported. Services need to use IPv4 and bind to address - `127.0.0.1` in the container to be visible on the host. ## Next steps