diff --git a/components/engine/api/client/commands.go b/components/engine/api/client/commands.go index fe8701b54c..d6f19d934c 100644 --- a/components/engine/api/client/commands.go +++ b/components/engine/api/client/commands.go @@ -703,7 +703,7 @@ func (cli *DockerCli) CmdStart(args ...string) error { cErr chan error 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") openStdin = cmd.Bool([]string{"i", "-interactive"}, false, "Attach container's STDIN") ) diff --git a/components/engine/docs/man/docker-start.1.md b/components/engine/docs/man/docker-start.1.md index c2f91d2053..523b315594 100644 --- a/components/engine/docs/man/docker-start.1.md +++ b/components/engine/docs/man/docker-start.1.md @@ -2,7 +2,7 @@ % Docker Community % JUNE 2014 # NAME -docker-start - Restart a stopped container +docker-start - Start one or more stopped containers # SYNOPSIS **docker start** @@ -13,7 +13,7 @@ CONTAINER [CONTAINER...] # DESCRIPTION -Start a stopped container. +Start one or more stopped containers. # OPTIONS **-a**, **--attach**=*true*|*false* diff --git a/components/engine/docs/sources/reference/commandline/cli.md b/components/engine/docs/sources/reference/commandline/cli.md index f4dd5a5ac4..f8073d8505 100644 --- a/components/engine/docs/sources/reference/commandline/cli.md +++ b/components/engine/docs/sources/reference/commandline/cli.md @@ -2085,7 +2085,7 @@ more details on finding shared images from the command line. 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 -i, --interactive=false Attach container's STDIN