Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = cli.Command{ Name: "dockerbuild", Usage: "Build container from Dockerfile", Description: "Use the Docker build system to produce a Harpoon container.", Action: buildAction, Flags: []cli.Flag{ cli.StringFlag{ Name: "context", Usage: "Docker build context, i.e. directory. Overrides other build options.", }, cli.StringFlag{ Name: "from", Value: defaultFrom, Usage: "Docker image to base your container on", }, cli.StringSliceFlag{ Name: "add", Value: &cli.StringSlice{}, Usage: "SRC:DST, file(s) to include in your container (ADD src dst) [repeatable]", }, cli.StringFlag{ Name: "tag", Value: defaultTag, Usage: "Tag for built image", }, cli.StringFlag{ Name: "output", Value: defaultOutput, Usage: "Output filename, or URL to POST", }, cli.BoolFlag{ Name: "keep", Usage: "keep intermediate context directory", }, }, HideHelp: true, }
Command is the dockerbuild subcommand.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.