Преглед изворни кода

Merge pull request #28822 from yuexiao-wang/modify-plugin

Modify repoName to PLUGIN for docker plugin create
Vincent Demeester пре 8 година
родитељ
комит
b20bf510e5

+ 1 - 1
cli/command/plugin/create.go

@@ -64,7 +64,7 @@ func newCreateCommand(dockerCli *command.DockerCli) *cobra.Command {
 	options := pluginCreateOptions{}
 	options := pluginCreateOptions{}
 
 
 	cmd := &cobra.Command{
 	cmd := &cobra.Command{
-		Use:   "create [OPTIONS] reponame[:tag] PATH-TO-ROOTFS (rootfs + config.json)",
+		Use:   "create [OPTIONS] PLUGIN[:tag] PATH-TO-ROOTFS(rootfs + config.json)",
 		Short: "Create a plugin from a rootfs and config",
 		Short: "Create a plugin from a rootfs and config",
 		Args:  cli.RequiresMinArgs(2),
 		Args:  cli.RequiresMinArgs(2),
 		RunE: func(cmd *cobra.Command, args []string) error {
 		RunE: func(cmd *cobra.Command, args []string) error {

+ 1 - 1
cli/command/plugin/push.go

@@ -14,7 +14,7 @@ import (
 
 
 func newPushCommand(dockerCli *command.DockerCli) *cobra.Command {
 func newPushCommand(dockerCli *command.DockerCli) *cobra.Command {
 	cmd := &cobra.Command{
 	cmd := &cobra.Command{
-		Use:   "push NAME[:TAG]",
+		Use:   "push PLUGIN[:TAG]",
 		Short: "Push a plugin to a registry",
 		Short: "Push a plugin to a registry",
 		Args:  cli.ExactArgs(1),
 		Args:  cli.ExactArgs(1),
 		RunE: func(cmd *cobra.Command, args []string) error {
 		RunE: func(cmd *cobra.Command, args []string) error {

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

@@ -16,7 +16,7 @@ keywords: "plugin, create"
 # plugin create
 # plugin create
 
 
 ```markdown
 ```markdown
-Usage:  docker plugin create [OPTIONS] reponame[:tag] PATH-TO-ROOTFS
+Usage:  docker plugin create [OPTIONS] PLUGIN[:tag] PATH-TO-ROOTFS(rootfs + config.json)
 
 
 Create a plugin from a rootfs and configuration
 Create a plugin from a rootfs and configuration
 
 

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

@@ -14,7 +14,7 @@ keywords: "plugin, push"
 -->
 -->
 
 
 ```markdown
 ```markdown
-Usage:  docker plugin push NAME[:TAG]
+Usage:  docker plugin push PLUGIN[:TAG]
 
 
 Push a plugin to a registry
 Push a plugin to a registry