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