Hosting Docker Containers on Azure - Part 1
Docker is an open platform that helps developers, testers, and Ops team to develop, test, and deploy containers to different environments faster and in an efficient manner. Multiple containers can be hosted in one virtual machine so: It reduces the need to configure virtual machines, Containers are hosted in isolation and they cannot affect each other. Containers sharing the OS core and it leads to smaller size, faster boot time, as well as better utilization of resources Containers can be stored and be reused for future use The legacy implementation that is purely based on VMs, uses a VM per application and all VMs are managed by a Hypervisor:...