find my docker host ip code example
Example 1: How to get a Docker container's IP address from the host
docker inspect some-rabbit
you will get the ip address and port number from hear.
http://172.17.0.2:15672/
Example 2: show ip in docker
docker inspect --format='{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -aq)