Skip to content
Advertisement

Docker won’t bind to address; says it’s in use but it isn’t

I’m trying to bind two ports from a docker container to a currently unused IP address on one of the host machine’s interfaces.

I’m attempting to start the container (which is based on the centos/systemd image) like this:

JavaScript

and it fails with the message: Error starting userland proxy: listen tcp 172.19.5.1:22: bind: address already in use.

You can see from the settings of the network that this address should be totally valid:

JavaScript

and for good measure, I created the IP on my machine’s main network interface:

JavaScript

I have no other containers running (sudo docker ps -aq returns nothing) and I know for sure that no other process is using that address – here’s my output for sudo netstat -anlp (without the Unix domain socket section):

JavaScript

(Neither redacted IP is, needless to say, the one to which I’m trying to bind; they are the real external IPv6 addresses of myself and the machine.)

All of the results for publishing ports of a docker container that I can find in my searches are merely trying to bind a port to localhost, and I really cannot figure out why this is breaking. The system is CentOS Linux release 7.4.1708 (Core), Docker version 17.05.0-ce, build 89658be

NOTE: I’ve tried both with and without EXPOSE 22 5432 in the Dockerfile and I’ve tried different IP addresses (which you can see in the ip addr output above).

Advertisement

Answer

0.0.0.0 means “all ipv4 interfaces”, so yes, it’s already in use in this line of your output:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement