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