Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!
Learn from Guru Rajesh Kumar and double your salary in just one year.
Components of docker are
- Docker engine
- Docker registry
- Docker image
- Docker container
Docker engine
Docker engine is a command-line and it is interact with docker daemon. When we run docker commands the instructions sends to the daemon and perform operation by other components.
Docker registry
Docker registry is a hosted service where the docker images are stored. We can create an repository and store our own images also. It has both private and public repositories.
Docker image.
Docker image is a template that contains instructions for the Docker container. This image built in YAML language and it is hosted by docker registry.
Docker container
Docker container is a light weight virtual machine and is an executable package of applications and its dependencies to run an application.