Reputation: 11986
I'm trying to access a private docker registry served by Harbor. When logged out, pulling n.n.n.n/some_path/some_image:some_tag
will result in image not found error message. The image is not private. When I login with
`docker login -u user -p pass n.n.n.n`
pulling works fine.
I think this is wrong (or is it?). Did I configure the Harbor server incorrectly?
Upvotes: 0
Views: 2025
Reputation: 6234
Well it looks like you configured your Harbor server I would say correctly.
This is the error message docker say when an image is private. In docker hub it happens in the same way.
So find the way to unprotect your image in Harbor.
I know that in the official registry container it is not possible. You can protect the entire registry or not.
Update
Looks like in Harbor you need to have an account even for public projects. Check if you have disabled Anonymous access.
Upvotes: 1