mirror of https://github.com/docker/cli.git
24 lines
545 B
Go
24 lines
545 B
Go
|
package engine
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/cli/cli"
|
||
|
"github.com/docker/cli/cli/command"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// NewEngineCommand returns a cobra command for `engine` subcommands
|
||
|
func NewEngineCommand(dockerCli command.Cli) *cobra.Command {
|
||
|
cmd := &cobra.Command{
|
||
|
Use: "engine COMMAND",
|
||
|
Short: "Manage the docker engine",
|
||
|
Args: cli.NoArgs,
|
||
|
RunE: command.ShowHelp(dockerCli.Err()),
|
||
|
}
|
||
|
cmd.AddCommand(
|
||
|
newActivateCommand(dockerCli),
|
||
|
newCheckForUpdatesCommand(dockerCli),
|
||
|
newUpdateCommand(dockerCli),
|
||
|
)
|
||
|
return cmd
|
||
|
}
|