Lesson 2 of 6
Images & Containers
Learn the difference between a reusable image and a running container.
An image is an immutable template containing application layers and metadata.
A container is a running instance created from an image, with its own isolated process environment.
Example
docker run --rm hello-worldPractice challenge
Explain why many containers can be created from one image.