Some great docker tools
Here's a few docker tools I've started using to help diagnose issues:
Simple Docker UI
offered by felix
A Google Chrome Plugin that allows you to view your images and running containers - including the logs. No more docker ps, docker logs [container id]
DockerUI
by Michael Crosby (crosbymichael.com), Kevan Ahlquist (kevanahlquist.com)
Run with the following command:
docker run -d -p 10.20.30.1:80:9000 --privileged -v /var/run/docker.sock:/var/run/docker.sock dockerui/dockerui
I've started deploying this on all my nodes when I'm looking to understand how containers are deployed and interacting
I'll keep updating this as I find new tools.
If you have your favorite, comment away...
Steve