+
+
+```bash
+export ASPIRE_ENABLE_CONTAINER_TUNNEL=true
+aspire run
+```
+
+
+
+
+```powershell
+$env:ASPIRE_ENABLE_CONTAINER_TUNNEL = "true"
+aspire run
+```
+
+
+
+
+When the tunnel is enabled, containers can reach host-based services without relying on platform-specific workarounds like `host.docker.internal`.
+
+## When to use the container tunnel
+
+The container tunnel is useful whenever containers need to communicate with host-based services. Common scenarios include:
+
+- **A containerized frontend calling a host-based API**: For example, an Nginx or Node.js container that calls a .NET API project running on the host.
+- **Database tools in containers connecting to host databases**: For example, pgAdmin running in a container connecting to a PostgreSQL instance running as a host process.
+- **Testing containers against local services**: Integration test containers that need to reach services running directly on the development machine.
+
+For container-to-container communication, the bridge network handles connectivity automatically, and the tunnel is not involved. For more information on how Aspire manages container networks, see [How container networks are managed](/fundamentals/networking-overview/#how-container-networks-are-managed).
+
+## See also
+
+- [Inner-loop networking overview](/fundamentals/networking-overview/)
+- [Service discovery](/fundamentals/service-discovery/)
+- [Architecture overview — Developer Control Plane](/architecture/overview/#developer-control-plane)
+- [What's new in Aspire 13 — Universal container-to-host communication](/whats-new/aspire-13/#universal-container-to-host-communication)
diff --git a/src/frontend/src/content/docs/fundamentals/networking-overview.mdx b/src/frontend/src/content/docs/fundamentals/networking-overview.mdx
index c61eb04b4..6760dd82b 100644
--- a/src/frontend/src/content/docs/fundamentals/networking-overview.mdx
+++ b/src/frontend/src/content/docs/fundamentals/networking-overview.mdx
@@ -65,6 +65,8 @@ Containers register themselves on the network using their resource name. Aspire
[service discovery](/fundamentals/service-discovery/).
+When containers need to reach host-based services, Aspire can use the **container tunnel** to provide reliable connectivity. For more information, see [Container networking](/fundamentals/container-networking/).
+
## Launch profiles
When you call `AddProject`, the AppHost looks for _Properties/launchSettings.json_ to determine the default set of endpoints. The AppHost selects a specific launch profile using the following rules: