What is the difference between a Docker image and a container?
spaceto flip
An image is a read-only template with the application code, runtime, and dependencies (like a class). A container is a running instance of an image (like an object). You can run multiple containers from one image. Images are built from Dockerfiles.