dockeripdockerfiledocker-build

Docker container doesn't expose ports when --net=host is mentioned in the docker run command


I have a CentOS docker container on a CentOS docker host. When I use this command to run the docker image docker run -d --net=host -p 8777:8777 ceilometer:1.x the docker container get host's IP but doesn't have ports assigned to it.

If I run the same command without "--net=host" docker run -d -p 8777:8777 ceilometer:1.x docker exposes the ports but with a different IP. The docker version is 1.10.1. I want the docker container to have the same IP as the host with ports exposed. I also have mentioned in the Dockerfile the instruction EXPOSE 8777 but with no use when "--net=host" is mentioned in the docker run command.


Solution

  • The docker version is 1.10.1. I want the docker container to have same ip as the host with ports exposed.

    When you use --net=host it tells the container to use the hosts networking stack. So you can't expose ports to the host, because it is the host (as far as the network stack is concerned).

    docker inspect might not show the expose ports, but if you have an application listening on a port, it will be available as if it were running on the host.