Philip Hutchins

Head in the cloud...

Docker Tips and Tricks

Programatically Getting Container Info

IP’s & Ports

Get all containers IP addresses with container name

for docker

1
docker inspect -f ' - ' $(docker ps -aq)

for docker compose

1
docker inspect -f ' - ' $(docker ps -aq)

Alias for getting the docker VM IP

Comments