mirror of https://github.com/docker/cli.git
Consolidate the files in client/
Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
a5c08fdbf0
commit
2bc929b019
5
usage.go
5
usage.go
|
@ -6,7 +6,8 @@ type Command struct {
|
||||||
Description string
|
Description string
|
||||||
}
|
}
|
||||||
|
|
||||||
var dockerCommands = []Command{
|
// DockerCommandUsage lists the top level docker commands and their short usage
|
||||||
|
var DockerCommandUsage = []Command{
|
||||||
{"attach", "Attach to a running container"},
|
{"attach", "Attach to a running container"},
|
||||||
{"build", "Build an image from a Dockerfile"},
|
{"build", "Build an image from a Dockerfile"},
|
||||||
{"commit", "Create a new image from a container's changes"},
|
{"commit", "Create a new image from a container's changes"},
|
||||||
|
@ -55,7 +56,7 @@ var dockerCommands = []Command{
|
||||||
var DockerCommands = make(map[string]Command)
|
var DockerCommands = make(map[string]Command)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
for _, cmd := range dockerCommands {
|
for _, cmd := range DockerCommandUsage {
|
||||||
DockerCommands[cmd.Name] = cmd
|
DockerCommands[cmd.Name] = cmd
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue