mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix cli argument usage typo for docker --mtu
Docker-DCO-1.1-Signed-off-by: Danny Berger <dpb587@gmail.com> (github: dpb587)
This commit is contained in:
parent
4f20538f73
commit
8c4160fe61
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ func main() {
|
||||||
flInterContainerComm = flag.Bool([]string{"#icc", "-icc"}, true, "Enable inter-container communication")
|
flInterContainerComm = flag.Bool([]string{"#icc", "-icc"}, true, "Enable inter-container communication")
|
||||||
flGraphDriver = flag.String([]string{"s", "-storage-driver"}, "", "Force the docker runtime to use a specific storage driver")
|
flGraphDriver = flag.String([]string{"s", "-storage-driver"}, "", "Force the docker runtime to use a specific storage driver")
|
||||||
flHosts = opts.NewListOpts(api.ValidateHost)
|
flHosts = opts.NewListOpts(api.ValidateHost)
|
||||||
flMtu = flag.Int([]string{"#mtu", "-mtu"}, 0, "Set the containers network MTU; if no value is provided: default to the default route MTU or 1500 if not default route is available")
|
flMtu = flag.Int([]string{"#mtu", "-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")
|
||||||
)
|
)
|
||||||
flag.Var(&flDns, []string{"#dns", "-dns"}, "Force docker to use specific DNS servers")
|
flag.Var(&flDns, []string{"#dns", "-dns"}, "Force docker to use specific DNS servers")
|
||||||
flag.Var(&flHosts, []string{"H", "-host"}, "tcp://host:port, unix://path/to/socket, fd://* or fd://socketfd to use in daemon mode. Multiple sockets can be specified")
|
flag.Var(&flHosts, []string{"H", "-host"}, "tcp://host:port, unix://path/to/socket, fd://* or fd://socketfd to use in daemon mode. Multiple sockets can be specified")
|
||||||
|
|
|
@ -80,7 +80,7 @@ Commands
|
||||||
-r, --restart=true: Restart previously running containers
|
-r, --restart=true: Restart previously running containers
|
||||||
-s, --storage-driver="": Force the docker runtime to use a specific storage driver
|
-s, --storage-driver="": Force the docker runtime to use a specific storage driver
|
||||||
-v, --version=false: Print version information and quit
|
-v, --version=false: Print version information and quit
|
||||||
-mtu, --mtu=0: Set the containers network MTU; if no value is provided: default to the default route MTU or 1500 if not default route is available
|
-mtu, --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
|
||||||
|
|
||||||
The Docker daemon is the persistent process that manages containers. Docker uses the same binary for both the
|
The Docker daemon is the persistent process that manages containers. Docker uses the same binary for both the
|
||||||
daemon and client. To run the daemon you provide the ``-d`` flag.
|
daemon and client. To run the daemon you provide the ``-d`` flag.
|
||||||
|
|
Loading…
Reference in a new issue