mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix docker start help message
Signed-off-by: Lei Jitang <leijitang@huawei.com>
This commit is contained in:
parent
faa6fd40f4
commit
3c37f88aff
3 changed files with 4 additions and 4 deletions
|
@ -703,7 +703,7 @@ func (cli *DockerCli) CmdStart(args ...string) error {
|
||||||
cErr chan error
|
cErr chan error
|
||||||
tty bool
|
tty bool
|
||||||
|
|
||||||
cmd = cli.Subcmd("start", "CONTAINER [CONTAINER...]", "Restart a stopped container", true)
|
cmd = cli.Subcmd("start", "CONTAINER [CONTAINER...]", "Start one or more stopped containers", true)
|
||||||
attach = cmd.Bool([]string{"a", "-attach"}, false, "Attach STDOUT/STDERR and forward signals")
|
attach = cmd.Bool([]string{"a", "-attach"}, false, "Attach STDOUT/STDERR and forward signals")
|
||||||
openStdin = cmd.Bool([]string{"i", "-interactive"}, false, "Attach container's STDIN")
|
openStdin = cmd.Bool([]string{"i", "-interactive"}, false, "Attach container's STDIN")
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
% Docker Community
|
% Docker Community
|
||||||
% JUNE 2014
|
% JUNE 2014
|
||||||
# NAME
|
# NAME
|
||||||
docker-start - Restart a stopped container
|
docker-start - Start one or more stopped containers
|
||||||
|
|
||||||
# SYNOPSIS
|
# SYNOPSIS
|
||||||
**docker start**
|
**docker start**
|
||||||
|
@ -13,7 +13,7 @@ CONTAINER [CONTAINER...]
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
|
|
||||||
Start a stopped container.
|
Start one or more stopped containers.
|
||||||
|
|
||||||
# OPTIONS
|
# OPTIONS
|
||||||
**-a**, **--attach**=*true*|*false*
|
**-a**, **--attach**=*true*|*false*
|
||||||
|
|
|
@ -2081,7 +2081,7 @@ more details on finding shared images from the command line.
|
||||||
|
|
||||||
Usage: docker start [OPTIONS] CONTAINER [CONTAINER...]
|
Usage: docker start [OPTIONS] CONTAINER [CONTAINER...]
|
||||||
|
|
||||||
Restart a stopped container
|
Start one or more stopped containers
|
||||||
|
|
||||||
-a, --attach=false Attach STDOUT/STDERR and forward signals
|
-a, --attach=false Attach STDOUT/STDERR and forward signals
|
||||||
-i, --interactive=false Attach container's STDIN
|
-i, --interactive=false Attach container's STDIN
|
||||||
|
|
Loading…
Add table
Reference in a new issue