Merge pull request #23268 from WeiZhang555/cobra-start

Migrate start command to cobra
This commit is contained in:
Vincent Demeester 2016-06-06 08:59:42 +02:00
commit dd2c65392f
2 changed files with 1 additions and 1 deletions

View File

@ -36,6 +36,7 @@ func NewCobraAdaptor(clientFlags *cliflags.ClientFlags) CobraAdaptor {
container.NewCreateCommand(dockerCli),
container.NewExportCommand(dockerCli),
container.NewRunCommand(dockerCli),
container.NewStartCommand(dockerCli),
container.NewStopCommand(dockerCli),
container.NewUnpauseCommand(dockerCli),
image.NewRemoveCommand(dockerCli),

View File

@ -35,7 +35,6 @@ var DockerCommandUsage = []Command{
{"restart", "Restart a container"},
{"rm", "Remove one or more containers"},
{"save", "Save one or more images to a tar archive"},
{"start", "Start one or more stopped containers"},
{"stats", "Display a live stream of container(s) resource usage statistics"},
{"tag", "Tag an image into a repository"},
{"top", "Display the running processes of a container"},