Clean up list of available commands

Upstream-commit: f20deac47f35520ace5ad1c1aadbd3f8c34ad571
Component: engine
This commit is contained in:
Solomon Hykes
2013-02-12 17:25:41 -08:00
parent 2f7804f789
commit e6faaa4b36
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...)
}