Browse Source

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

Fix the usage for `service rm` command
Doug Davis 9 năm trước cách đây
mục cha
commit
3d4bde92b7
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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),