In this section, we will start our discussion on containers, Docker and sandboxes.
Introducing Docker, sandboxes, and their benefits
Containers and Docker
Containers are tools that are widely used today because they are based on virtualization that can be used for different purposes. Container provides operating-system-level virtualization, they shares the host system's kernel with other containers. The only limitation to the number of containers that can be used on a machine are memory, the processor, and disk limits.
Docker is a set of tools for creating containerized apps, Docker for Windows is the best way to get started with Docker on Windows systems.
Comparison between virtual...