예제 #1
0
파일: nuke.go 프로젝트: vektra/container
func init() {
	app.AddCommand("nuke", "Delete an image or container", "", &nukeOptions{})
}
예제 #2
0
파일: import.go 프로젝트: vektra/container
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
파일: commit.go 프로젝트: vektra/container
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
파일: volumes.go 프로젝트: vektra/container
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
파일: inspect.go 프로젝트: vektra/container
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
파일: images.go 프로젝트: vektra/container
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{})
}