how to find ip address of container docker code example
Example 1: how to find the ip of a docker container
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id
Example 2: show ip in docker
docker inspect <container_ID Or container_name> |grep 'Port'