get ip address of docker container 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: how to get ip's of all docker container
# To see all ip's with name of container
docker inspect -f '{{.Name}} - {{.NetworkSettings.IPAddress }}' $(docker ps -aq)
Example 4: show ip in docker
docker-ip YOUR_CONTAINER_ID
Example 5: how to find the ip of a docker container
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id
Example 6: show ip in docker
docker inspect |grep 'Port'