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
|
|
|
{"commit", "Create a new image from a container's changes"},
|
|
|
|
{"cp", "Copy files/folders between a container and the local filesystem"},
|
|
|
|
{"exec", "Run a command in a running container"},
|
|
|
|
{"info", "Display system-wide information"},
|
|
|
|
{"inspect", "Return low-level information on a container or image"},
|
2016-03-01 11:28:42 -05:00
|
|
|
{"login", "Log in to a Docker registry"},
|
2015-10-08 08:46:21 -04:00
|
|
|
{"logout", "Log out from a Docker registry"},
|
|
|
|
{"ps", "List containers"},
|
|
|
|
{"push", "Push an image or a repository to a registry"},
|
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
|
|
|
|
}
|
|
|
|
}
|