Explorar el Código

add gcr url to image response

Alexander Belanger hace 5 años
padre
commit
8d69285e2c
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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,
 		})
 	}