From 08d9fe490e2649027b08c8c40eb3702490e36bf2 Mon Sep 17 00:00:00 2001 From: Nate Jones Date: Sun, 6 Oct 2013 16:36:38 +0000 Subject: [PATCH] fix "images -a" Upstream-commit: dcf0279a50e7a2eca97b205725df474a516b8f79 Component: engine --- components/engine/server.go | 1 + 1 file changed, 1 insertion(+) diff --git a/components/engine/server.go b/components/engine/server.go index 2492c88683..ab8193f4c2 100644 --- a/components/engine/server.go +++ b/components/engine/server.go @@ -330,6 +330,7 @@ func (srv *Server) Images(all bool, filter string) ([]APIImages, error) { for _, image := range allImages { var out APIImages out.ID = image.ID + out.RepoTags = []string{":"} out.Created = image.Created.Unix() out.Size = image.Size out.VirtualSize = image.getParentsSize(0) + image.Size