Posts

Showing posts from April, 2020

Docker

Image
By:- Prateek Bhatt & Sagar Kushwah What is Docker? Docker is a platform to create, install and operate applications using containers. Those containers allow the developer to assemble an application with all of its components such as libraries. In other way, Docker is like a virtual machine, but instead of building a whole operating system, Docker allows applications to use the same OS kernel as the system running on. Docker gives a boost to performance of system and reduces the size of the application. Docker is open-source, it means that anyone can connect to Docker and use it according to their needs. What is a Container? A container contains applications to keep them isolated from the host operating system. If you want to run services in a container, then you need to install Docker to host and manage containerization services. For whom is Docker useful? Docker is best platform for develo...