2015-05-05 04:18:28 +00:00
|
|
|
package cli
|
|
|
|
|
2016-02-12 08:11:31 +00:00
|
|
|
// Command is the struct containing the command name and description
|
2015-10-08 12:46:21 +00:00
|
|
|
type Command struct {
|
|
|
|
Name string
|
|
|
|
Description string
|
|
|
|
}
|
|
|
|
|
2016-04-25 16:05:42 +00:00
|
|
|
// DockerCommandUsage lists the top level docker commands and their short usage
|
|
|
|
var DockerCommandUsage = []Command{
|
2015-10-08 12:46:21 +00:00
|
|
|
{"exec", "Run a command in a running container"},
|
|
|
|
{"info", "Display system-wide information"},
|
2016-06-14 02:56:23 +00:00
|
|
|
{"inspect", "Return low-level information on a container, image or task"},
|
2016-01-04 15:58:20 +00:00
|
|
|
{"update", "Update configuration of one or more containers"},
|
2015-10-08 12:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DockerCommands stores all the docker command
|
|
|
|
var DockerCommands = make(map[string]Command)
|
|
|
|
|
|
|
|
func init() {
|
2016-04-25 16:05:42 +00:00
|
|
|
for _, cmd := range DockerCommandUsage {
|
2015-10-08 12:46:21 +00:00
|
|
|
DockerCommands[cmd.Name] = cmd
|
|
|
|
}
|
|
|
|
}
|