duplicate image of library namespace
qiukeren opened this issue · 4 comments
qiukeren commented
roman-vynar commented
Hello,
Any idea why your registry returns both "library/ubuntu","ubuntu"?
qiukeren commented
Hello,
Any idea why your registry returns both "library/ubuntu","ubuntu"?
here is the reproduce code:
# curl docker.homelabbity.com/v2/_catalog
get: {"repositories":["centos"]}
# docker tag centos docker.server.com/library/centos
# docker push docker.server.com/library/centos
# curl docker.homelabbity.com/v2/_catalog
get: {"repositories":["centos","library/centos"]}
the reigstry image is registry:2
,2d4f4b5309b1
,5 weeks ago
.
roman-vynar commented
I see, you have created "library/" namespace explicitly by docker tag/push and it interferes with the built-in one.
qiukeren commented
thanks for your reply , it is my mistake.