Answers for "First, get the docker host’s ip:"

0

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/
Posted by: Guest on March-26-2021
0

docker get ip all container

docker ps -q | xargs -n 1 docker inspect --format '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}} {{ .Name }}' | sed 's/ // /'
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language