1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Clean up list of available commands

This commit is contained in:
Solomon Hykes 2013-02-12 17:25:41 -08:00
parent a6b7254a4e
commit f20deac47f
2 changed files with 2 additions and 1 deletions

View file

@ -261,6 +261,7 @@ func InteractiveMode() error {
"info",
"tar",
"web",
"images",
"docker",
} {
if err := os.Symlink(dockerPath, path.Join(tmp, cmd)); err != nil {

View file

@ -45,7 +45,7 @@ func (srv *Server) Help() string {
{"info", "Display system-wide information"},
{"tar", "Stream the contents of a container as a tar archive"},
{"web", "Generate a web UI"},
{"attach", "Attach to a running container"},
{"images", "List images"},
} {
help += fmt.Sprintf(" %-10.10s%s\n", cmd...)
}