Docker Fundamentals: Kalyan Reddy Daida
Docker Fundamentals: Kalyan Reddy Daida
StackSimplify
Docker
Introduction
Libraries Dependencies
Hypervisor
Operating System
Docker
Operating System
Hardware Infrastructure
Libs Deps Libs Deps Libs Deps Libs Deps Libs Deps Libs Deps
Docker Docker
Hypervisor
Hardware Infrastructure
nginxdemos
/hello Docker Daemon
Docker Registry
(Docker Hub)
nginxdemos
Container-11
/hello
Images Containers
Docker Host
docker pull nginxdemos/hello
• Docker Registry or Docker Hub
• A Docker registry stores Docker images. docker run -p 82:80 -d nginxdemos/hello
• Docker Hub is a public registry that anyone can use, and Docker is
configured to look for images on Docker Hub by default. Docker Client (My Desktop or Docker Host)
• We can even run our own private registry.
• When we use the docker pull or docker run commands, the
required images are pulled from our configured registry.
• When we use the docker push command, our image is pushed to
our configured registry.