2016-06-23 13:03:40 -04:00
|
|
|
package image
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
|
|
|
"github.com/docker/docker/cli"
|
|
|
|
"github.com/docker/docker/cli/command"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NewImageCommand returns a cobra command for `image` subcommands
|
|
|
|
func NewImageCommand(dockerCli *command.DockerCli) *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "image",
|
2016-09-12 11:37:00 -04:00
|
|
|
Short: "Manage images",
|
2016-06-23 13:03:40 -04:00
|
|
|
Args: cli.NoArgs,
|
2016-11-17 13:54:10 -05:00
|
|
|
RunE: dockerCli.ShowHelp,
|
2016-06-23 13:03:40 -04:00
|
|
|
}
|
|
|
|
cmd.AddCommand(
|
|
|
|
NewBuildCommand(dockerCli),
|
|
|
|
NewHistoryCommand(dockerCli),
|
|
|
|
NewImportCommand(dockerCli),
|
|
|
|
NewLoadCommand(dockerCli),
|
|
|
|
NewPullCommand(dockerCli),
|
|
|
|
NewPushCommand(dockerCli),
|
|
|
|
NewSaveCommand(dockerCli),
|
|
|
|
NewTagCommand(dockerCli),
|
|
|
|
newListCommand(dockerCli),
|
|
|
|
newRemoveCommand(dockerCli),
|
|
|
|
newInspectCommand(dockerCli),
|
2016-09-22 17:04:34 -04:00
|
|
|
NewPruneCommand(dockerCli),
|
2016-06-23 13:03:40 -04:00
|
|
|
)
|
|
|
|
return cmd
|
|
|
|
}
|