Skip to main content

Working with Docker Images

Understanding Docker Images and Layers

0:00
LearnStep 1/4

What are Docker Images?

What are Docker Images?

A Docker image is a lightweight, standalone, executable package that includes everything needed to run software:

  • Application code
  • Runtime environment
  • System libraries
  • Dependencies
  • Configuration files

Images are Read-Only

Docker images are immutable and read-only. Once built, they cannot be changed. To modify an image, you create a new one.

Image Naming

text

Image Hierarchy

text