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