an open-source platform that allows developers to build, deploy, and run applications in lightweight, standardized environments called containers.
an isolated environment that packages an application along with all its dependencies.
a tool that allows you to define and run multi-container applications using a single YAML file.
ExplanationAn image registry is a centralized location for storing and sharing your container images.
ExplanationAn image is a static blueprint. It contains everything needed to create a running environment
To limit and isolate the usage of different containers such as CPU usage.
ExplanationThe Docker daemon (dockerd) is the background service that does the actual work: building images, running containers, managing networks and volumes. It listens for API requests and carries them out.
ExplanationVolumes are persistent data stores for containers, created and managed by Docker.
Explanation