This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 8416112c589 Fix dead Docker Desktop networking links in the
docker-compose guide (#72467)
8416112c589 is described below
commit 8416112c5891b12eb04555c1bf67a30c2745753b
Author: Roshan Ramani <[email protected]>
AuthorDate: Wed Sep 9 05:00:30 2026 +0530
Fix dead Docker Desktop networking links in the docker-compose guide
(#72467)
Docker retired the per-platform desktop/windows/networking and
desktop/mac/networking pages, and the use-cases-and-workarounds anchor
does not exist on the replacement. The host.docker.internal guidance the
paragraph points at now lives on one platform-agnostic page, so the two
platform links collapse into it.
Generated-by: Claude Code following the guidelines
---
airflow-core/docs/howto/docker-compose/index.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/docs/howto/docker-compose/index.rst
b/airflow-core/docs/howto/docker-compose/index.rst
index e1045f70ea0..aa61ed3a8bd 100644
--- a/airflow-core/docs/howto/docker-compose/index.rst
+++ b/airflow-core/docs/howto/docker-compose/index.rst
@@ -387,7 +387,7 @@ If you have a custom config file and wish to use it in your
Airflow instance, yo
Networking
==========
-In general, if you want to use Airflow locally, your Dags may try to connect
to servers which are running on the host. In order to achieve that, an extra
configuration must be added in ``docker-compose.yaml``. For example, on Linux
the configuration must be in the section ``services: airflow-worker`` adding
``extra_hosts: - "host.docker.internal:host-gateway"``; and use
``host.docker.internal`` instead of ``localhost``. This configuration vary in
different platforms. Please check the Doc [...]
+In general, if you want to use Airflow locally, your Dags may try to connect
to servers which are running on the host. In order to achieve that, an extra
configuration must be added in ``docker-compose.yaml``. For example, on Linux
the configuration must be in the section ``services: airflow-worker`` adding
``extra_hosts: - "host.docker.internal:host-gateway"``; and use
``host.docker.internal`` instead of ``localhost``. This configuration vary in
different platforms. Please check the Doc [...]
Debug Airflow inside docker container using PyCharm
===================================================