Docker Containers
Get an overview into Docker containers and how they can be utilized in building software.
We'll cover the following...
In this lesson, we take a look at a different technology that will also help us create components to deliver our code.
The term container refers to something completely different from a Python container (an object with a __contains__
method). A container is a process that runs in the operating system under a group with certain restrictions and isolation considerations. Concretely, we refer to Docker
containers, which allow managing applications (services or processes) as independent components.
Press + to interact
Use of containers
Containers represent ...