Managing Docker Images and Containers
Learn the everyday Docker commands to list, inspect, stop, remove, and clean up images and containers so you can keep your environment tidy.
Images vs Containers
Two core concepts: an image is a read-only template (like a class), and a container is a running instance of it (like an object). One image, many containers.
Listing Images
List the images on your machine with docker images. Each row shows the repository, tag, id, and size.
docker imagesAll lessons in this course
- Introduction to Containerization
- Installing Docker & Basic Commands
- Running Your First Container
- Managing Docker Images and Containers