1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Ignore 'registry not found' when pushing on independent registries

This commit is contained in:
shin- 2013-05-29 11:25:49 -07:00
parent 1c817913ee
commit 2a1f8f6fda

View file

@ -600,14 +600,15 @@ func (srv *Server) pushRepository(r *registry.Registry, out io.Writer, name, reg
Endpoints: []string{registryEp},
}
tagsList, err := srv.registry.GetRemoteTags(repoData.Endpoints, name, repoData.Tokens)
if err != nil {
if err != nil && err.Error() != "Repository not found" {
return err
}
for tag, id := range tagsList {
repoData.ImgList[id] = &registry.ImgData{
Id: id,
Tag: tag,
Checksum: "",
} else if err == nil {
for tag, id := range tagsList {
repoData.ImgList[id] = &registry.ImgData{
Id: id,
Tag: tag,
Checksum: "",
}
}
}
}