コード例 #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{})
}