mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
key=values -> key=value
Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
parent
2fe36baa0a
commit
62a7d75512
3 changed files with 3 additions and 3 deletions
|
@ -70,7 +70,7 @@ func (config *Config) InstallFlags() {
|
|||
opts.IPListVar(&config.Dns, []string{"#dns", "-dns"}, "Force Docker to use specific DNS servers")
|
||||
opts.DnsSearchListVar(&config.DnsSearch, []string{"-dns-search"}, "Force Docker to use specific DNS search domains")
|
||||
opts.MirrorListVar(&config.Mirrors, []string{"-registry-mirror"}, "Specify a preferred Docker registry mirror")
|
||||
opts.LabelListVar(&config.Labels, []string{"-label"}, "Set key=values labels to the daemon (displayed in `docker info`)")
|
||||
opts.LabelListVar(&config.Labels, []string{"-label"}, "Set key=value labels to the daemon (displayed in `docker info`)")
|
||||
|
||||
// Localhost is by default considered as an insecure registry
|
||||
// This is a stop-gap for people who are running a private registry on localhost (especially on Boot2docker).
|
||||
|
|
|
@ -69,7 +69,7 @@ unix://[/path/to/socket] to use.
|
|||
Set the logging level. Default is `info`.
|
||||
|
||||
**--label**="[]"
|
||||
Set key=values labels to the daemon (displayed in `docker info`)
|
||||
Set key=value labels to the daemon (displayed in `docker info`)
|
||||
|
||||
**--mtu**=VALUE
|
||||
Set the containers network mtu. Default is `1500`.
|
||||
|
|
|
@ -76,7 +76,7 @@ expect an integer, and they can only be specified once.
|
|||
--ip-masq=true Enable IP masquerading for bridge's IP range
|
||||
--iptables=true Enable Docker's addition of iptables rules
|
||||
-l, --log-level="info" Set the logging level
|
||||
--label=[] Set key=values labels to the daemon (displayed in `docker info`)
|
||||
--label=[] Set key=value labels to the daemon (displayed in `docker info`)
|
||||
--mtu=0 Set the containers network MTU
|
||||
if no value is provided: default to the default route MTU or 1500 if no default route is available
|
||||
-p, --pidfile="/var/run/docker.pid" Path to use for daemon PID file
|
||||
|
|
Loading…
Reference in a new issue