October 2020
Beginner
250 pages
6h 21m
English
Now that we know a bit about images, it’s time to get into containers. As this is a book about Docker, we’ll be talking specifically about Docker containers. However, Docker implements the image and container specs published by the Open Container Initiative (OCI) at https://www.opencontainers.org. This means a lot of what you learn here will apply to other container runtimes that are OCI compliant. Also, the things you’ll learn will help you if you need to learn and use Kubernetes.
We’ll split this chapter into the usual three parts:
A container is the runtime instance of an image. In the same way that you can start a virtual machine (VM) from a virtual machine ...