Articles in this series
PART I · EVOLUTION OF VIRTUALIZATION AND CONTAINERIZATION Stage 1: Dedicated Servers Problem: Each application ran on a dedicated server, resulting in...
PART II · Running Windows and Linux Containers on Windows: To run a Windows container on a Windows host, you don't need a virtual machine. Containers...
PART IV · note: BEFORE RUNNING COMMAND ON CLI, ALWAYS RUN YOUR DOCKER DESKTOP COMMANDS docker run Start a new container from an image. If the image is...
PART V · Images are built in layers. Each layer is an immutable file, but is a collection of files and directories. The last layer can be used to write...
PART III · Overall Architecture Docker follows a client-server architecture. In this architecture, users interact with Docker through a client (typically...
PART VI · CREATE OWN IMAGE EVERY IMAGE HAS BASE IMAGE (TO PROVIDE A base image provides the starting point for your container. It includes the basic...