Is there a command I can run to get the container\'s IP address right from the host after a new container is created?
Basically, once Docker creates the container, I
docker inspect CONTAINER_ID | grep "IPAddress"
You can add -i to grep for ignoring the case then even the following will work:
-i
docker inspect CONTAINER_ID | grep -i "IPaDDreSS"