非常教程

Docker 17参考手册

引擎 | Engine

使用PKI管理swarm安全性(引擎) | Manage swarm security with PKI (Engine)

Docker内置的群集模式公钥基础设施(PKI)系统使得安全部署容器编排系统变得非常简单。群中的节点使用相互传输层安全性(TLS)来验证,授权和加密与群中其他节点的通信。

当您通过运行创建swarm时docker swarm init,Docker将自己指定为管理器节点。默认情况下,管理器节点会生成一个新的根证书颁发机构(CA)和一个密钥对,用于保护与加入该群体的其他节点的通信。如果您愿意,可以使用--external-cadocker swarm init命令的标志来指定您自己的外部生成的根CA.

当您将其他节点加入到群集中时,管理器节点还会生成两个令牌:一个工作人员令牌和一个管理员令牌。每个令牌都包含根 CA 证书的摘要和随机生成的秘密。当节点加入群集时,加入节点使用摘要来验证来自远程管理器的根 CA 证书。远程管理员使用该秘密来确保加入节点是批准的节点。

每当新节点加入群时,管理员都会向节点发出证书。证书包含一个随机生成的节点 ID,用于标识证书公用名称(CN)下的节点和组织单位(OU)下的角色。节点ID用作当前群中节点生存期的密码安全节点标识。

下图说明了工作管理器节点和工作节点如何使用最少的 TLS 1.2来加密通信。

使用PKI管理swarm安全性(引擎)  |  Manage swarm security with PKI (Engine)

下面的示例显示了来自工作节点的证书的信息:

Certificate:
    Data:
        Version: 3 (0x2)
        Serial Number:
            3b:1c:06:91:73:fb:16:ff:69:c3:f7:a2:fe:96:c1:73:e2:80:97:3b
        Signature Algorithm: ecdsa-with-SHA256
        Issuer: CN=swarm-ca
        Validity
            Not Before: Aug 30 02:39:00 2016 GMT
            Not After : Nov 28 03:39:00 2016 GMT
        Subject: O=ec2adilxf4ngv7ev8fwsi61i7, OU=swarm-worker, CN=dw02poa4vqvzxi5c10gm4pq2g
...snip...

默认情况下,群中的每个节点每三个月更新一次证书。您可以通过运行该docker swarm update --cert-expiry <TIME PERIOD>命令来配置此间隔。最小旋转值是1小时。有关详细信息,请参阅 Docker 群更新 CLI 参考。

轮换CA证书

如果群集 CA 密钥或管理器节点受到危害,您可以轮换群集根CA,以便任何节点都不会再信任由旧的根 CA 签署的证书。

运行docker swarm ca --rotate以生成新的CA证书和密钥。如果你愿意,你可以传递--ca-cert--external-ca标志来指定根证书,并使用群集外部的根 CA. 或者,您可以通过--ca-cert--ca-key标志来指定您希望群使用的确切证书和密钥。

当你发出这个docker swarm ca --rotate命令时,下面的事情按顺序发生:

  1. Docker 生成一个交叉签名证书。这意味着新的根 CA 证书的版本是使用旧的根 CA 证书签署的。此交叉签名证书用作所有新节点证书的中间证书。这可确保仍信任旧根 CA 的节点将能够验证由新 CA 签名的证书。
  1. 在Docker 17.06 及更高版本中,Docker 还告诉所有节点立即更新其 TLS 证书。此过程可能需要几分钟时间,具体取决于群中节点的数量。

注意:如果您的 swarm 具有不同 Docker 版本的节点,则以下两种情况属实:

- Only a manager that is running as the leader **and** running Docker 17.06 or higher will tell nodes to renew their TLS certificates.
- Only nodes running Docker 17.06 or higher will obey this directive.

对于最可预测的行为,确保所有 swarm 节点都在运行 Docker 17.06 或更高版本。

  1. 在群中的每个节点都有新的 CA 签名的新 TLS 证书后,Docker 将忘记旧的 CA 证书和密钥材料,并告诉所有节点只信任新的 CA 证书。这也会导致群体的联合令牌发生变化。以前的联合令牌将不再有效。从这一点开始,所有已颁发的新节点证书都将使用新的根 CA 进行签名,并且不会包含任何中间件。了解更多
  1. 阅读有关节点如何工作。
  1. 了解群集模式服务如何工作。

群,安全,tls,pki

引擎 | Engine相关

1..NET核心应用程序(引擎) | .NET Core application (Engine)
2.关于图像,容器和存储驱动程序(引擎) | About images, containers, and storage drivers (Engine)
3.向swarm添加节点(Engine) | Add nodes to the swarm (Engine)
4.应用自定义元数据(引擎) | Apply custom metadata (Engine)
5.应用滚动更新(引擎) | Apply rolling updates (Engine)
6.apt-cacher-ng
7.编写Dockerfiles(引擎)的最佳实践 | Best practices for writing Dockerfiles (Engine)
8.二进制(引擎) | Binaries (Engine)
9.将容器端口绑定到主机(引擎) | Bind container ports to the host (Engine)
10.突破性变化(引擎) | Breaking changes (Engine)
11.建立自己的网桥 | Build your own bridge (Engine)
12.CentOS (Engine)
13.CentOS (Engine)
14.配置容器DNS(引擎) | Configure container DNS (Engine)
15.在用户定义的网络中配置容器DNS(引擎) | Configure container DNS in user-defined networks (Engine)
16.CouchDB (Engine)
17.创建基本映像(引擎) | Create a base image (Engine)
18.创建群(引擎) | Create a swarm (Engine)
19.自定义docker0网桥(引擎) | Customize the docker0 bridge (Engine)
20.Debian (Engine)
21.默认桥接网络 | Default bridge network
22.删除服务(引擎) | Delete the service (Engine)
23.部署服务(引擎) | Deploy a service (Engine)
24.将服务部署到一个群(引擎) | Deploy services to a swarm (Engine)
25.不推荐的引擎功能 | Deprecated Engine features
26.Docker容器网络(引擎) | Docker container networking (Engine)
27.Docker概述(引擎) | Docker overview (Engine)
28.Docker运行参考(引擎) | Docker run reference (Engine)
29.Dockerfile引用(引擎) | Dockerfile reference (Engine)
30.Dockerize应用程序 | Dockerize an application
31.排空节点(引擎) | Drain a node (Engine)
32.引擎 | Engine
33.FAQ(引擎) | FAQ (Engine)
34.Fedora (Engine)
35.开始 | Get started (Engine)
36.开始使用macvlan网络驱动程序 | Get started with macvlan network driver (Engine)
37.开始使用多主机网络 | Get started with multi-host networking (Engine)
38.节点如何工作 | How nodes work (Engine)
39.服务如何运作(引擎) | How services work (Engine)
40.图像管理 | Image management (Engine)
41.检查服务(引擎) | Inspect the service (Engine)
42.安装Docker(引擎) | Install Docker (Engine)
43.IPv6与Docker(引擎) | IPv6 with Docker (Engine)
44.将节点加入群集(引擎) | Join nodes to a swarm (Engine)
45.旧容器链接(引擎) | Legacy container links (Engine)
46.锁定你的群(引擎) | Lock your swarm (Engine)
47.管理群中的节点(引擎) | Manage nodes in a swarm (Engine)
48.使用Docker机密管理敏感数据(引擎) | Manage sensitive data with Docker secrets (Engine)
49.管理群体服务网络(引擎) | Manage swarm service networks (Engine)
50.迁移到引擎1.10 | Migrate to Engine 1.10
51.可选的Linux安装后步骤(引擎) | Optional Linux post-installation steps (Engine)
52.总览 | Overview (Engine)
53.总览 | Overview (Engine)
54.PostgreSQL(引擎) | PostgreSQL (Engine)
55.群集模式中的筏共识(引擎) | Raft consensus in swarm mode (Engine)
56.Riak (Engine)
57.以群集模式运行Docker Engine | Run Docker Engine in swarm mode
58.扩展服务(引擎) | Scale the service (Engine)
59.SDKs (Engine)
60.选择一个存储驱动 | Select a storage driver (Engine)
61.设置教程(引擎) | Set up for the tutorial (Engine)
62.SSHd (Engine)
63.存储驱动总览 | Storage driver overview (Engine)
64.存储服务配置数据(引擎) | Store service configuration data (Engine)
65.Swarm管理指南(引擎) | Swarm administration guide (Engine)
66.Swarm模式关键概念(引擎) | Swarm mode key concepts (Engine)
67.Swarm模式覆盖网络安全模型(引擎) | Swarm mode overlay network security model (Engine)
68.群模式概述(引擎) | Swarm mode overview (Engine)
69.Ubuntu (Engine)
70.Ubuntu (Engine)
71.了解容器通信(引擎) | Understand container communication (Engine)
72.使用多阶段构建(引擎) | Use multi-stage builds (Engine)
73.使用swarm模式路由网格(引擎) | Use swarm mode routing mesh (Engine)
74.使用AUFS存储驱动程序(引擎) | Use the AUFS storage driver (Engine)
75.使用Btrfs存储驱动程序(引擎) | Use the Btrfs storage driver (Engine)
76.使用设备映射器存储驱动程序(引擎) | Use the Device mapper storage driver (Engine)
77.使用OverlayFS存储驱动程序(引擎) | Use the OverlayFS storage driver (Engine)
78.使用VFS存储驱动程序(引擎) | Use the VFS storage driver (Engine)
79.使用ZFS存储驱动程序(引擎) | Use the ZFS storage driver (Engine)
80.处理图像 | Work with images
81.使用网络命令(引擎) | Work with network commands (Engine)
Docker 17

Docker 是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的容器中,然后发布到任何流行的 Linux 机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口。

主页 https://docker.com/
源码 https://github.com/docker/docker
版本 17
发布版本 17.06