November 2019
Intermediate to advanced
408 pages
9h 56m
English
It starts our image from an existing one, adding more layers to it.
You would run the following command:
docker run image
Due to the layered structure of the filesystem that's used by Docker, each step in a Docker file creates a new layer. The filesystem is the result of all the operations working in tandem. The final image includes all the existing layers; adding a layer never reduces the size of the image. A new step for deleting will not be present in the final image, but it will always be available as part of the previous layer.
Read now
Unlock full access