瀏覽代碼

Merge pull request #24832 from npcode/fix-service-rm-usage

Fix the usage for `service rm` command
Doug Davis 9 年之前
父節點
當前提交
3d4bde92b7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      api/client/service/remove.go

+ 1 - 1
api/client/service/remove.go

@@ -13,7 +13,7 @@ import (
 func newRemoveCommand(dockerCli *client.DockerCli) *cobra.Command {
 
 	cmd := &cobra.Command{
-		Use:     "rm [OPTIONS] SERVICE",
+		Use:     "rm [OPTIONS] SERVICE [SERVICE...]",
 		Aliases: []string{"remove"},
 		Short:   "Remove a service",
 		Args:    cli.RequiresMinArgs(1),