0Pricing
Docker & Kubernetes for Developers · Lesson

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 images

All lessons in this course

  1. Introduction to Containerization
  2. Installing Docker & Basic Commands
  3. Running Your First Container
  4. Managing Docker Images and Containers
← Back to Docker & Kubernetes for Developers