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