- Distributed Computing with Go
- V.N. Nikhil Anurag
- 278字
- 2021-06-24 18:36:07
Understanding Docker
Before we start using Docker, let's take a brief look at how the Docker is meant to be used, how it is structured, and what are the major components of the complete system.
The following list and the accompanying image should help understand the architecture of Docker pipeline:
- Dockerfile: It consists of instructions on how to build an image that runs our program.
- Docker client: This is a command-line program used by the user to interact with Docker daemon.
- Docker daemon: This is the Daemon application that listens for commands to manage building or running containers and pushing containers to Docker registry. It is also responsible for configuring container networks, volumes, and so on.
- Docker images: Docker images contain all the steps necessary to build a container binary that can be executed on any Linux machine with Docker installed.
- Docker registry: The Docker registry is responsible for storing and retrieving the Docker images. We can use a public Docker registry or a private one. Docker Hub is used as the default Docker registry.
- Docker Container: The Docker container is different from the Container we have been discussing so far. A Docker container is a runnable instance of a Docker image. A Docker container can be created, started, stopped, and so on.
- Docker API: The Docker client we discussed earlier is a command-line interface to interact with Docker API. This means that the Docker daemon need not be running on the same machine as does the Docker client. The default setup that we will be using throughout the book talks to the Docker daemon on the local system using UNIX sockets or a network interface:

Docker architecture
推薦閱讀
- 構建可擴展分布式系統:方法與實踐
- 新手學電腦從入門到精通(Windows 10+Office 2016版)
- 網絡操作系統教程:Windows Server 2016管理與配置
- OpenSolaris設備驅動原理與開發
- Linux設備驅動開發
- Windows 7實戰從入門到精通
- Windows 7實戰從入門到精通(超值版)
- 鴻蒙操作系統設計原理與架構
- Windows網絡編程(第2版)
- Linux系統安全:縱深防御、安全掃描與入侵檢測
- openEuler操作系統核心技術與行業應用實踐
- Mastering Eclipse Plug-in Development
- Microsoft Azure Administrator:Exam Guide AZ-103
- Administering ArcGIS for Server
- Android Telephony原理解析與開發指南