dockerdocker-for-windowsdocker-for-macdocker-desktop

What is the Linux equivalent of "host.docker.internal"?


On Mac and Windows, it is possible to use host.docker.internal (Docker 18.03+) inside a container.

Is there one for Linux that will work out of the box without passing environment variables or extracting it using various CLI commands?


Solution

  • For Linux systems, you can – starting from major version 20.04 of the Docker engine – now also communicate with the host via host.docker.internal. This won't work automatically, but you need to provide the following run flag:

    --add-host=host.docker.internal:<host-gateway>
    

    Replace <host-gateway> with the IP of the gateway, like 172.xxx.0.1, where xxx is the offset of the network.

    See the answer here: How to access host port from docker container

    See also this answer below to add to a docker-compose file - What is the Linux equivalent of "host.docker.internal"?