ソースを参照

fix "images -a"

Nate Jones 11 年 前
コミット
dcf0279a50
1 ファイル変更1 行追加0 行削除
  1. 1 0
      server.go

+ 1 - 0
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{"<none>:<none>"}
 			out.Created = image.Created.Unix()
 			out.Size = image.Size
 			out.VirtualSize = image.getParentsSize(0) + image.Size