Files
podman/cmd/podman/container.go
Matthew Heon 9d80bc1dec Move podman refresh under the container subcommand
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>

Closes: #981
Approved by: baude
2018-06-22 19:26:46 +00:00

47 lines
833 B
Go

package main
import (
"github.com/urfave/cli"
)
var (
subCommands = []cli.Command{
attachCommand,
commitCommand,
createCommand,
diffCommand,
execCommand,
exportCommand,
inspectCommand,
killCommand,
logsCommand,
lsCommand,
mountCommand,
pauseCommand,
portCommand,
// pruneCommand,
refreshCommand,
restartCommand,
rmCommand,
runCommand,
startCommand,
statsCommand,
stopCommand,
topCommand,
umountCommand,
unpauseCommand,
// updateCommand,
waitCommand,
}
containerDescription = "Manage containers"
containerCommand = cli.Command{
Name: "container",
Usage: "container COMMAND",
Description: containerDescription,
ArgsUsage: "",
Subcommands: subCommands,
UseShortOptionHandling: true,
}
)