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
Use:
docker inspect $CID | grep IPAddress | grep -v null| cut -d '"' -f 4 | head -1