mirror of https://github.com/docker/cli.git
37 lines
817 B
Go
37 lines
817 B
Go
package context
|
|
|
|
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(newContextCommand)
|
|
}
|
|
|
|
// newContextCommand returns the context cli subcommand
|
|
func newContextCommand(dockerCLI command.Cli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "context",
|
|
Short: "Manage contexts",
|
|
Args: cli.NoArgs,
|
|
RunE: command.ShowHelp(dockerCLI.Err()),
|
|
|
|
DisableFlagsInUseLine: true,
|
|
}
|
|
cmd.AddCommand(
|
|
newCreateCommand(dockerCLI),
|
|
newListCommand(dockerCLI),
|
|
newUseCommand(dockerCLI),
|
|
newExportCommand(dockerCLI),
|
|
newImportCommand(dockerCLI),
|
|
newRemoveCommand(dockerCLI),
|
|
newUpdateCommand(dockerCLI),
|
|
newInspectCommand(dockerCLI),
|
|
newShowCommand(dockerCLI),
|
|
)
|
|
return cmd
|
|
}
|