diff --git a/docker/docker.go b/docker/docker.go index 69710ef68c..e19adf4469 100644 --- a/docker/docker.go +++ b/docker/docker.go @@ -261,6 +261,7 @@ func InteractiveMode() error { "info", "tar", "web", + "images", "docker", } { if err := os.Symlink(dockerPath, path.Join(tmp, cmd)); err != nil { diff --git a/dockerd/dockerd.go b/dockerd/dockerd.go index d362f81ccb..9a8b41a846 100644 --- a/dockerd/dockerd.go +++ b/dockerd/dockerd.go @@ -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...) }