docker_daemon
2016-04-29 18:09:19 2 举报
Docker守护进程(docker_daemon)是Docker引擎的核心组件,负责管理Docker容器的生命周期。它接收来自客户端的请求,如创建、启动、停止和删除容器等,并通过与底层操作系统的交互来实现这些功能。Docker守护进程使用Linux内核的一些特性,如命名空间和cgroups,来隔离和限制容器的资源使用。此外,它还提供了RESTful API和命令行界面,使用户能够方便地管理和操作Docker容器。总之,Docker守护进程是实现Docker容器化的关键组件,它为开发者和运维人员提供了一个高效、可扩展和可靠的平台,以构建、部署和管理应用程序。
作者其他创作
大纲/内容
Daemon
+ attribute1:type = defaultValue+ attribute2:type- attribute3:type
+ operation1(params):returnType- operation2(params)- operation3()
Image stores the image configuration.
StoreBackend
Store is an object for creating and accessing images.
Image
+ ID: string+ parent: string+ Comment: string+ Created: time.Time+ Container: string+ ContainerConfig: container.Config+ DockerVersion: string+ Author: string+ Config: *container.Config Architecture: string+ OS: string+ Size: int64+ Parent: ID+ RootFS: *RootFS+ History: []History+ OSVersion: string+ OSFeatures: []string- rawJSON: []byte- computedID: ID
image/Store
- synx.Mutex- ls: LayerGetReleaser- images: map[ID]*imageMeta- fs: StoreBackend- digestSet: *digest.Set
0 条评论
下一页