Signed-off-by: Michael Crosby <crosbymichael@gmail.com> (cherry picked from commit cfec8027ed4ef9efa12751462ca9921f71afafac) Signed-off-by: Daniel Hiltgen <daniel.hiltgen@docker.com>
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
|
|
}
|