-->

Friday, April 22, 2016

Running docker on TCP

Docker container run as a unix socket which means it uses the UDP protocol which is not very reliable. If you want to run the docker on the TCP you can do it as follows:

 docker -H 10.X.X.X:2375 -d &;  


You can verify this by using the netstat command to verify if the docker is runnig on a tcp port


0 comments:

Post a Comment