Container Technology

How to write Dockerfile - a simple guide

How to write Dockerfile – a simple guide

Introduction  Docker container engine is one of the most popular container engines. Container provides you a way to run your application using minimal resources with proper isolation. Also, container technology makes your application portable. To explain this portability, which means developers can easily hand over the application to the operations   In this article we will …

How to write Dockerfile – a simple guide Read More »

Docker installation and sample application deployment – a simple & practical guide

Introduction to Docker Docker is a containerization platform.  Docker provides us OS-level virtualization, we can use it to package software and run them as container. To deploy an application as a docker container we need a docker image of that application, the docker image can be built from a Dockerfile. A Dockerfile is nothing but …

Docker installation and sample application deployment – a simple & practical guide Read More »

Hypervisor vs Container technology

Hypervisor vs Container technology – Let’s discuss

Introduction Hypervisor is a kind of software which allows us to have multiple virtual machines within one physical machine. Basically, hypervisor will allocate the resources of the host physical machine (like RAM, CPU etc.) in between the virtual machines. This hypervisor provides portioning and isolation of the hardware and creates virtual machines, so it is …

Hypervisor vs Container technology – Let’s discuss Read More »