March 2017
Beginner to intermediate
925 pages
18h 11m
English
As the number of images grows, it becomes difficult to find relation between them. There are a few utilities for which you can find the relation between images.
One or more Docker images on the host running the Docker daemon.
$ docker images -t
The dependencies between layers will be fetched from the metadata of the Docker images.
From --viz to docker images, we can see dependencies graphically; to do this, you will need to have the graphviz package installed:
$ docker images --viz | dot -Tpng -o /tmp/docker.png $ display /tmp/docker.png
As it states in the warning that appears when running the ...
Read now
Unlock full access