ip address of docker container on windows code example
Example 1: 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 2: show ip in docker
docker inspect -f '{{.Name}} - {{.NetworkSettings.IPAddress }}' $(docker ps -aq)