Browse Source

add gcr url to image response

Alexander Belanger 5 năm trước cách đây
mục cha
commit
8d69285e2c
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      internal/registry/registry.go

+ 1 - 0
internal/registry/registry.go

@@ -136,6 +136,7 @@ func (r *Registry) listGCRRepositories(
 	for _, repo := range gcrResp.Repositories {
 		res = append(res, &Repository{
 			Name: repo,
+			URI:  r.URL + "/" + repo,
 		})
 	}