Docker Pull requires authentication.
docker pull minio/minio
Using default tag: latest
Error response from daemon: Get https://registry-1.docker.io/v2/minio/minio/manifests/latest: unauthorized: incorrect username or password
By calling directly the URL i get:
$ curl https://registry-1.docker.io/v2/minio/minio/manifests/latest
{
"errors":[
{
"code":"UNAUTHORIZED",
"message":"authentication required",
"detail":[
{
"Type":"repository",
"Class":"",
"Name":"minio/minio",
"Action":"pull"
}
]
}
]
}
Which version of Docker are you using @Ostico there is no authentication required for pulling minio/minio - https://hub.docker.com/r/minio/minio/
$ docker pull minio/minio
Using default tag: latest
latest: Pulling from minio/minio
605ce1bd3f31: Already exists
825bc901f61b: Pull complete
c27389108021: Pull complete
Digest: sha256:0285d4247818144419e5c8c6bf493db508b292cd1b7bef1be56de0d26c76d427
Status: Downloaded newer image for minio/minio:latest
Looks like related to https://github.com/docker/hub-feedback/issues/1098 you can fix this issue by doing docker logout
Closing this issue as answered. Please feel free to re-open the issue, if the suggested fix does not work for you.
Hi @harshavardhana ,
Thank you, Solved. Really annoying docker bug.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
Looks like related to https://github.com/docker/hub-feedback/issues/1098 you can fix this issue by doing
docker logout