mirror of https://github.com/docker/cli.git
man: update dockerd man-page to include --feature flag
commit f13c08246d93dd5aae200d5881a3a374e6cac876 introduced
this flag, but did not yet update the manpage.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit 610f9157f5
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
48a2cdff97
commit
7811c442d6
|
@ -31,6 +31,7 @@ dockerd - Enable daemon mode
|
||||||
[**--exec-opt**[=*[]*]]
|
[**--exec-opt**[=*[]*]]
|
||||||
[**--exec-root**[=*/var/run/docker*]]
|
[**--exec-root**[=*/var/run/docker*]]
|
||||||
[**--experimental**[=**false**]]
|
[**--experimental**[=**false**]]
|
||||||
|
[**--feature**[=*NAME*=**true**|**false**]
|
||||||
[**--fixed-cidr**[=*FIXED-CIDR*]]
|
[**--fixed-cidr**[=*FIXED-CIDR*]]
|
||||||
[**--fixed-cidr-v6**[=*FIXED-CIDR-V6*]]
|
[**--fixed-cidr-v6**[=*FIXED-CIDR-V6*]]
|
||||||
[**-G**|**--group**[=*docker*]]
|
[**-G**|**--group**[=*docker*]]
|
||||||
|
@ -222,6 +223,14 @@ $ sudo dockerd --add-runtime runc=runc --add-runtime custom=/usr/local/bin/my-ru
|
||||||
**--experimental**=""
|
**--experimental**=""
|
||||||
Enable the daemon experimental features.
|
Enable the daemon experimental features.
|
||||||
|
|
||||||
|
**--feature**=*NAME*=**true**|**false**
|
||||||
|
Enable or disable feature feature in the daemon. This option corresponds
|
||||||
|
with the "features" field in the daemon.json configuration file. Using
|
||||||
|
both the command-line option and the "features" field in the configuration
|
||||||
|
file produces an error. The feature option can be specified multiple times
|
||||||
|
to configure multiple features.
|
||||||
|
Usage example: `--feature containerd-snapshotter=true`
|
||||||
|
|
||||||
**--fixed-cidr**=""
|
**--fixed-cidr**=""
|
||||||
IPv4 subnet for fixed IPs (e.g., 10.20.0.0/16); this subnet must be nested in
|
IPv4 subnet for fixed IPs (e.g., 10.20.0.0/16); this subnet must be nested in
|
||||||
the bridge subnet (which is defined by \-b or \-\-bip).
|
the bridge subnet (which is defined by \-b or \-\-bip).
|
||||||
|
|
Loading…
Reference in New Issue