Docker is unable to pull images, resulting in errors.
Opened this issue · 0 comments
Hi,
Can not pull images from docker, error description is below
Context:
- The issue occurs within a corporate network.
- The system is running on Windows.
- This problem did not occur previously, appeared on 11 of June. My colleagues in same network are able to pull images.
make login:
docker login
Authenticating with existing credentials...
Login did not succeed, error: Error response from daemon: Get "https://registry-1.docker.io/v2/": Get "https://auth.docker.io/token?account=XXXX&client_id=docker&offline_token=true&service=registry.docker.io": EOF
Log in with your Docker ID or email address to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com/ to create one.
You can log in with your password or a Personal Access Token (PAT). Using a limited-scope PAT grants better security and is required for organizations using SSO. Learn more at https://docs.docker.com/go/access-tokens/
Username (XXXX): XXXX
Password: XXXX
Login Succeeded
make pull:
docker pull hello-world
Using default tag: latest
Error response from daemon: Head "https://registry-1.docker.io/v2/library/hello-world/manifests/latest": Get "https://auth.docker.io/token?account=XXXX&scope=repository%3Alibrary%2Fhello-world%3Apull&service=registry.docker.io" : EOF
when trying to pull image from docker desktop
(HTTP code 500) server error - Head "https://registry-1.docker.io/v2/library/hello-world/manifests/latest": Get "https://auth.docker.io/token?account=XXXX&scope=repository%3Alibrary%2Fhello-world%3Apull&service=registry.docker.io:": EOF
Docker Version - Docker Desktop 4.30.0 (149282)
daemon.json:
{
"builder": {
"gc": {
"defaultKeepStorage": "20GB",
"enabled": true
}
},
"debug": true,
"experimental": false
}
config.json:
{
"auths": {
"https://index.docker.io/v1/": {}
},
"credsStore": "desktop",
"currentContext": "default",
"plugins": {
"-x-cli-hints": {
"enabled": "true"
}
}
}