38 lines
905 B
Go
38 lines
905 B
Go
package plugin
|
|
|
|
import (
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/docker/cli/internal/commands"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
commands.Register(newPluginCommand)
|
|
}
|
|
|
|
// newPluginCommand returns a cobra command for `plugin` subcommands
|
|
func newPluginCommand(dockerCLI command.Cli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "plugin",
|
|
Short: "Manage plugins",
|
|
Args: cli.NoArgs,
|
|
RunE: command.ShowHelp(dockerCLI.Err()),
|
|
Annotations: map[string]string{"version": "1.25"},
|
|
}
|
|
|
|
cmd.AddCommand(
|
|
newDisableCommand(dockerCLI),
|
|
newEnableCommand(dockerCLI),
|
|
newInspectCommand(dockerCLI),
|
|
newInstallCommand(dockerCLI),
|
|
newListCommand(dockerCLI),
|
|
newRemoveCommand(dockerCLI),
|
|
newSetCommand(dockerCLI),
|
|
newPushCommand(dockerCLI),
|
|
newCreateCommand(dockerCLI),
|
|
newUpgradeCommand(dockerCLI),
|
|
)
|
|
return cmd
|
|
}
|