I needed to figure out which IPs were all allocated within my docker environment. The following command provides a list:
docker ps -q | xargs docker inspect -f '{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}'
I needed to figure out which IPs were all allocated within my docker environment. The following command provides a list:
docker ps -q | xargs docker inspect -f '{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}'