Skip to main content

Posts

Showing posts from April, 2025

Docker

Docker  A Ship can transport varieties of things in a single deck.  Deck  is like OS and each container contains  different materials (software) Basic Idea Key Notes Docker is a containerisation platform.  Containerisation means putting something within a container. Here basically running software or application within a container.  Benefits it provides:  Isolation  Container provides isolation.  So applications can run in an isolated environment, preventing conflicts and providing security.  It is easier to manage things in an isolated place instead of mesh of a number of things. Easy to Ship Container makes easier to transport things from one place to another. Same application we can ship easily in different places in different operating systems and different machines like local, cloud etc.  Motivation Why to use docker?  Platform Independent Without docker to run an app we need to install it or host it directly on ...