summaryrefslogtreecommitdiff
path: root/cmd/podman/image.go
blob: ac7ff4944b7ace96203572e093338e7f50176d7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package main

import (
	"github.com/containers/libpod/cmd/podman/cliconfig"
	"github.com/spf13/cobra"
)

var (
	imageDescription = "Manage images"
	imageCommand     = cliconfig.PodmanCommand{
		Command: &cobra.Command{
			Use:   "image",
			Short: "Manage images",
			Long:  imageDescription,
		},
	}
)

//imageSubCommands are implemented both in local and remote clients
var imageSubCommands = []*cobra.Command{
	_historyCommand,
	_imageExistsCommand,
	_inspectCommand,
	_imagesCommand,
	_pruneImagesCommand,
	_pushCommand,
	_rmiCommand,
	_tagCommand,
}

func init() {
	imageCommand.AddCommand(imageSubCommands...)
	imageCommand.AddCommand(getImageSubCommands()...)
	rootCmd.AddCommand(imageCommand.Command)
}