how to find out the ip address of a container code example
Example 1: docker get container ip
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'