virtualization

Containerization vs Virtualization

Containers are lightweight, portable running instances of docker image that contain all of your code and its dependencies. It helps the software to run on any machine without worrying about the configuration on production servers. Virtualization refers to the virtual division of hardware (CPU, Memory) of a bare metal computer/server Read more…

docker file

What is a Docker file?

A Docker file is something significant in the entire process of SDL (Software Development Lifecycle), It is a file created to make the Docker image of software or an application, whose running instance called Docker container runs on production servers. To know more about Docker, please read the earlier articles. Read more…