- Identifiy Docker architecture componenets
- Client: send instructions or command to the Docker host server
- host: keep a daemon as dockerd, listens for Docker API reqeusts or command such as "docker run" and processes those commands.Daemon builds, runs, and distributes containers to the registry
- registry: store the images
- Explain the features of the Docker architecture components
- Client can communicate wth both local and remote hosts
- The client and daemon can run on the same system or different systems.
- Docker daemon can also communicate with other daemons to manage Docker services.
- Registry
- Stores and distrubutes images
- Access is public or private
- Describe the process of containerization using Docker
标签:daemon,run,communicate,Architecture,images,Container,Docker From: https://www.cnblogs.com/jbite9057/p/18089713