docker container ip address code example

Example 1: docker get container ip

docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id

Example 2: how to check ip of docker container

docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id

Example 3: show ip in docker

docker-ip YOUR_CONTAINER_ID

Example 4: how to find the ip of a docker container

docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id

Example 5: show ip in docker

docker inspect <container_ID Or container_name> |grep 'IPAddress'

Example 6: 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/

Tags:

Misc Example