Sitecore 10 - Containers and Docker
Here I'll explain you some basic concepts related to containers and docker. If you look at the above diagram. you will get the basic understanding about the infrastructure requirements for Virtual machine setups. Don't get it ? Let me explain you. Virtual Machines: As per the above diagram it shows where each virtual machine has its own guest operating system which runs on top of the hosting infrastructure operating system. Hypervisor is the software used for creating virtual machines. Extra operating system per VM setup is obviously requires more space and load on Infrastructure. VM provides the hardware level process isolation where each applications run independently on virtual machines. Container: Containers provide a lightweight and isolated runtime environment that encapsulates all the necessary components and dependencies required to run the applications. They uses host Operating system and does not need a separate OS. Containers provide OS level process isolation to r...