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:
parent
1c817913ee
commit
2a1f8f6fda
1 changed files with 8 additions and 7 deletions
15
server.go
15
server.go
|
@ -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] = ®istry.ImgData{
|
||||
Id: id,
|
||||
Tag: tag,
|
||||
Checksum: "",
|
||||
} else if err == nil {
|
||||
for tag, id := range tagsList {
|
||||
repoData.ImgList[id] = ®istry.ImgData{
|
||||
Id: id,
|
||||
Tag: tag,
|
||||
Checksum: "",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue