Merge pull request #23276 from yongtang/23211-spf13-cobra-stop

Use spf13/cobra for docker stop
This commit is contained in:
Vincent Demeester 2016-06-05 22:37:15 +02:00
commit 713f88ec6f
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.NewStopCommand(dockerCli),
image.NewSearchCommand(dockerCli),
volume.NewVolumeCommand(dockerCli),
)

View File

@ -38,7 +38,6 @@ var DockerCommandUsage = []Command{
{"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"},
{"stop", "Stop a running container"},
{"tag", "Tag an image into a repository"},
{"top", "Display the running processes of a container"},
{"unpause", "Unpause all processes within a container"},