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