-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathcmd.go
More file actions
39 lines (34 loc) · 937 Bytes
/
cmd.go
File metadata and controls
39 lines (34 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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"},
DisableFlagsInUseLine: true,
}
cmd.AddCommand(
newDisableCommand(dockerCLI),
newEnableCommand(dockerCLI),
newInspectCommand(dockerCLI),
newInstallCommand(dockerCLI),
newListCommand(dockerCLI),
newRemoveCommand(dockerCLI),
newSetCommand(dockerCLI),
newPushCommand(dockerCLI),
newCreateCommand(dockerCLI),
newUpgradeCommand(dockerCLI),
)
return cmd
}