Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Create = cli.Command{ Name: "create", Usage: "Create a host", Flags: []cli.Flag{ cli.StringFlag{ Name: fEngineInstallBundle, Value: "/go/src/github.com/docker/docker/bundles/latest", Usage: "Custom bundle path to use for engine installation", }, cli.StringFlag{ Name: fEngineStorageDriver, Value: "overlay", Usage: "Custom bundle path to use for engine installation", }, }, Action: create, }
Create is the "create" command.
View Source
var Env = cli.Command{ Name: "env", Usage: "Display the commands to set up the environment for the Docker client", Flags: []cli.Flag{ cli.BoolFlag{ Name: fSetClientPath, Usage: "Set PATH for the Docker client", }, cli.StringFlag{ Name: fShell, Value: "auto-detect", Usage: "Force environment to be configured for a specified shell: [fish, sh], default is auto-detect", }, }, Action: env, }
Env is the "env" command.
View Source
var LS = cli.Command{
Name: "ls",
Usage: "List hosts",
Action: ls,
}
LS is the "ls" command.
View Source
var RM = cli.Command{
Name: "rm",
Usage: "Remove a host",
Action: rm,
}
RM is the "rm" command.
View Source
var Start = cli.Command{
Name: "start",
Usage: "Start a host",
Action: start,
}
Start is the "start" command.
View Source
var Stop = cli.Command{
Name: "stop",
Usage: "Stop a host",
Action: stop,
}
Stop is the "stop" command.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.