Basic Concepts
In this lesson, you will be introduced to some basic concepts which are essential to understand before moving forward in the course.
There are three concepts I need you to grasp before we begin: containers, images, and registries.
Containers
A container is what we eventually want to run and host in Docker. You can think of it as an isolated machine, or a virtual machine if you prefer.
From a conceptual point of view, a container runs inside the Docker host isolated ...