浏览代码

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