document switch for only running containers and package name of graphviz on debian

This commit is contained in:
fabianlee 2017-05-23 23:19:14 +00:00
parent 1f8a6a6f0c
commit 2df85b6786

View file

@ -16,7 +16,7 @@ different ways, to help you understand what's going on inside the system.
``` ```
2. Visualize images by running `dockviz images -t`, which has similar output to `docker images -t`. 2. Visualize images by running `dockviz images -t`, which has similar output to `docker images -t`.
Image can be visualized as [Graphviz](http://www.graphviz.org), or as a tree or short summary in the terminal. Only Graphviz output has been implemented for containers. Image can be visualized as [Graphviz](http://www.graphviz.org), or as a tree or short summary in the terminal. Only Graphviz output has been implemented for containers (Debian: apt-get install graphviz).
# Output Examples # Output Examples
@ -26,6 +26,9 @@ Currently, containers are visualized with labelled lines for links. Containers
``` ```
$ dockviz containers -d | dot -Tpng -o containers.png $ dockviz containers -d | dot -Tpng -o containers.png
# only show running containers
$ dockviz containers -d -r | dot -Tpng -o containers.png
``` ```
![](sample/containers.png "Container") ![](sample/containers.png "Container")