mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-16 12:47:52 +00:00
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #941 Approved by: TomSweeneyRedHat
32 lines
598 B
Go
32 lines
598 B
Go
package main
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var (
|
|
imageSubCommands = []cli.Command{
|
|
buildCommand,
|
|
historyCommand,
|
|
importCommand,
|
|
inspectCommand,
|
|
loadCommand,
|
|
lsImagesCommand,
|
|
// pruneCommand,
|
|
pullCommand,
|
|
pushCommand,
|
|
rmImageCommand,
|
|
saveCommand,
|
|
tagCommand,
|
|
}
|
|
|
|
imageDescription = "Manage images"
|
|
imageCommand = cli.Command{
|
|
Name: "image",
|
|
Usage: "image COMMAND",
|
|
Description: imageDescription,
|
|
ArgsUsage: "",
|
|
Subcommands: imageSubCommands,
|
|
UseShortOptionHandling: true,
|
|
}
|
|
)
|