DevOps(Day-19) :Docker Introduction
TABLE OF CONTENTS
Containers
Docker
Docker architecture
Docker Client
Docker Host
Docker Registry
Tasks
First of all, let's put our focus on what is a container.
Containers
These are isolated environments containing their processes, networks and mounts.
Docker
Docker is used to containerising applications that can run anywhere, anytime and as many times as you want in any environment.
Dockers can run on any flavour of OS on it as long as they have the same kernel.
Docker architecture
Docker Client
The Docker client uses commands to communicate with the Docker Daemon (Server). When a client runs any docker command on the docker client terminal, the client terminal sends these docker commands to the Docker daemon.
Docker Client uses Command Line Interface (CLI) to run the following commands
docker pull
docker build
docker run
Docker Host
Docker Host is used to providing an environment to execute and run applications. It contains the docker daemon, images, containers, networks, and storage.
Docker Registry
Docker Registry manages and stores the Docker images.
There are two types of registries in Docker -
Pubic Registry - Public Registry is also called a Docker hub.
Private Registry - It is used to share images within the enterprise.
Thank you for reading my article.
Have a nice day.
Comments
Post a Comment