find ip of a docker image code example
Example 1: show ip in docker
docker-ip YOUR_CONTAINER_ID
Example 2: how to find the ip of a docker container
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id
docker-ip YOUR_CONTAINER_ID
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id