Debug School

Antony Jose
Antony Jose

Posted on

Understanding On Docker : Day 1 - Assignment 1

What is Docker?

Docker is software that helps in creating a light weight environment managed by kernel for developing or running application

What is Container?

Container is a kind of environment created by docker that has separate resources like root file system, pid system and network of its own.

How Docker work?

Docker helps in setting up the containers wherein the application resides and can be interacted with. Its similar to the capabilities in hypervisor of Virtual Machines.

Docker has commands to create, start, stop, pause, unpause, kill and remove the containers running in it.

How Container work?

Container creates its on libraries and dependencies based on the configurations in an isolated manner acting like a virtual operating system

What are the components of Docker?

Docker Engine(includes both the docker server as well as the docker client), docker images, docker container and docker registry

Top comments (0)