From 24b6f3cd6e6b615c5b7b83d2e1a67e4bdddcc4ec Mon Sep 17 00:00:00 2001 From: David Sheets Date: Mon, 1 May 2017 14:27:42 +0100 Subject: [PATCH] docs/dockerd: correct authz plugin chain semantics Signed-off-by: David Sheets --- docs/reference/commandline/dockerd.md | 8 ++++---- man/dockerd.8.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/reference/commandline/dockerd.md b/docs/reference/commandline/dockerd.md index 1fc3ee196f..b7381079b0 100644 --- a/docs/reference/commandline/dockerd.md +++ b/docs/reference/commandline/dockerd.md @@ -901,10 +901,10 @@ file. The plugin's implementation determines whether you can specify a name or path. Consult with your Docker administrator to get information about the plugins available to you. -Once a plugin is installed, requests made to the `daemon` through the command -line or Docker's Engine API are allowed or denied by the plugin. If you have -multiple plugins installed, at least one must allow the request for it to -complete. +Once a plugin is installed, requests made to the `daemon` through the +command line or Docker's Engine API are allowed or denied by the plugin. +If you have multiple plugins installed, each plugin, in order, must +allow the request for it to complete. For information about how to create an authorization plugin, see [authorization plugin](../../extend/plugins_authorization.md) section in the Docker extend section of this documentation. diff --git a/man/dockerd.8.md b/man/dockerd.8.md index 8304a45dd8..228a887e15 100644 --- a/man/dockerd.8.md +++ b/man/dockerd.8.md @@ -701,10 +701,10 @@ specification file. The plugin's implementation determines whether you can specify a name or path. Consult with your Docker administrator to get information about the plugins available to you. -Once a plugin is installed, requests made to the `daemon` through the command -line or Docker's Engine API are allowed or denied by the plugin. If you have -multiple plugins installed, at least one must allow the request for it to -complete. +Once a plugin is installed, requests made to the `daemon` through the +command line or Docker's Engine API are allowed or denied by the plugin. +If you have multiple plugins installed, each plugin, in order, must +allow the request for it to complete. For information about how to create an authorization plugin, see [authorization plugin](https://docs.docker.com/engine/extend/authorization/) section in the