mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
bf95472105
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
24 lines
609 B
Go
24 lines
609 B
Go
package checkpoint
|
|
|
|
import (
|
|
"github.com/docker/docker/cli"
|
|
"github.com/docker/docker/cli/command"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// NewCheckpointCommand returns the `checkpoint` subcommand (only in experimental)
|
|
func NewCheckpointCommand(dockerCli *command.DockerCli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "checkpoint",
|
|
Short: "Manage checkpoints",
|
|
Args: cli.NoArgs,
|
|
RunE: dockerCli.ShowHelp,
|
|
Tags: map[string]string{"experimental": "", "version": "1.25"},
|
|
}
|
|
cmd.AddCommand(
|
|
newCreateCommand(dockerCli),
|
|
newListCommand(dockerCli),
|
|
newRemoveCommand(dockerCli),
|
|
)
|
|
return cmd
|
|
}
|