示例#1
0
文件: nuke.go 项目: vektra/container
func init() {
	app.AddCommand("nuke", "Delete an image or container", "", &nukeOptions{})
}
示例#2
0
func init() {
	app.AddCommand("import", "Import an image from disk", "", &importOptions{})
}
示例#3
0
文件: ps.go 项目: vektra/container
func init() {
	app.AddCommand("ps", "List containers", "", &psOptions{})
}
示例#4
0
func init() {
	app.AddCommand("commit", "Convert a container to an image", "", &commitOptions{})
}
示例#5
0
文件: rmi.go 项目: vektra/container
func init() {
	app.AddCommand("rmi", "Remove an image", "", &rmiOptions{})
}
示例#6
0
func init() {
	app.AddCommand("volumes", "Disable and manipulate named volumes", "", &volumeOptions{})
}
示例#7
0
文件: ls.go 项目: vektra/container
func init() {
	app.AddCommand("ls", "List files in a container", "", &lsOptions{})
}
示例#8
0
文件: build.go 项目: vektra/container
func init() {
	app.AddCommand("build", "Build a container", "Build a container or image from a Dockerfile", &buildOptions{})
}
示例#9
0
func init() {
	app.AddCommand("inspect", "Display details about a container", "", &inspectOptions{})
}
示例#10
0
文件: run.go 项目: vektra/container
func init() {
	app.AddCommand("run", "Run a command in a new container", "", &runOptions{})
}
示例#11
0
文件: tag.go 项目: vektra/container
func init() {
	app.AddCommand("tag", "Add or remove a tag from an image", "", &tagOptions{})
}
示例#12
0
func init() {
	app.AddCommand("images", "List images installed", "", &imagesOptions{})
}
示例#13
0
文件: s3.go 项目: vektra/container
func init() {
	app.AddCommand("s3", "Pull down a repo from S3", "", &s3Options{})
}
示例#14
0
文件: port.go 项目: vektra/container
func init() {
	app.AddCommand("port", "Display ports for a container", "", &portOptions{})
}