Parcourir la source

Merge pull request #26182 from yuexiao-wang/add-options

Miss the options in some commands
Vincent Demeester il y a 8 ans
Parent
commit
ba23bf202a

+ 1 - 1
api/client/plugin/list.go

@@ -22,7 +22,7 @@ func newListCommand(dockerCli *client.DockerCli) *cobra.Command {
 	var opts listOptions
 	var opts listOptions
 
 
 	cmd := &cobra.Command{
 	cmd := &cobra.Command{
-		Use:     "ls",
+		Use:     "ls [OPTIONS]",
 		Short:   "List plugins",
 		Short:   "List plugins",
 		Aliases: []string{"list"},
 		Aliases: []string{"list"},
 		Args:    cli.NoArgs,
 		Args:    cli.NoArgs,

+ 1 - 1
api/client/system/info.go

@@ -27,7 +27,7 @@ func NewInfoCommand(dockerCli *client.DockerCli) *cobra.Command {
 	var opts infoOptions
 	var opts infoOptions
 
 
 	cmd := &cobra.Command{
 	cmd := &cobra.Command{
-		Use:   "info",
+		Use:   "info [OPTIONS]",
 		Short: "Display system-wide information",
 		Short: "Display system-wide information",
 		Args:  cli.NoArgs,
 		Args:  cli.NoArgs,
 		RunE: func(cmd *cobra.Command, args []string) error {
 		RunE: func(cmd *cobra.Command, args []string) error {

+ 1 - 1
docs/reference/commandline/info.md

@@ -11,7 +11,7 @@ parent = "smn_cli"
 # info
 # info
 
 
 ```markdown
 ```markdown
-Usage:  docker info
+Usage:  docker info [OPTIONS]
 
 
 Display system-wide information
 Display system-wide information
 
 

+ 1 - 1
docs/reference/commandline/plugin_ls.md

@@ -12,7 +12,7 @@ parent = "smn_cli"
 # plugin ls (experimental)
 # plugin ls (experimental)
 
 
 ```markdown
 ```markdown
-Usage:  docker plugin ls
+Usage:  docker plugin ls [OPTIONS]
 
 
 List plugins
 List plugins