Cloud
Cloud
Cloud
AWS
Major Components of Docker Architecture
·
Major Components of Docker Architecture
- Docker Client
- Docker Host
- Docker Daemon
- Docker Registry
1. Docker Client
- User can interact with Docker using Docker client. It is utility we use, when we use commands such as : docker run
- Docker client send these requests to Docker Daemon.
- A Docker client can communicate with more than one Docker daemon.
2. Docker Host
- It provides complete environment to execute and run the applications.
- It is the physical host, on which Docker daemon is running.
- It comprises of Docker daemon and Docker Objects like docker images, containers, network, storage.
3. Docker Daemon
- It pulls and builds container images requested by clients.
- Docker Daemon is also known as Docker Engine.
- It manages Docker images, containers, networks and volumes.
4. Docker Registry
- A Docker Registry is where the Docker images are stored.
- It provides locations, from where you can pull and store images.
- Docker Hub is the public registry that anyone can use.
Ready to Solve Your Most Complex Technical Challenges?
Our senior advisors are ready to help you navigate the ever-evolving technology landscape with precision and expertise.
Schedule a ConsultationRelated Articles
Different deployment environments!
Many organizations these days are utilizing numerous deployment environments, which their DevOps groups use to approve the necessary features prior to moving…
Microservices architecture
Microservice architecture is a method of software development to break down the application into small isolated functions which are called “services”. Services…
AMI – Amazon Machine Image
AMI is basically a template/blueprint of a Virtual instance. AMI provides the information required to launch an instance like Operating System, Application…