I catch 500 error on https://hub.docker.com
everything is down… https://www.dockerstatus.com/
no indication on when their services will be up and running again
Even I was working on building my application, I faced same issue, I resolved it with this commands:
sudo service docker status ,
sudo systemctl status docker ,
sudo journalctl -u docker.service --since “10 minutes ago” | tail -20 ,
cat /etc/resolv.conf ,
resolvectl status ,
nslookup registry-1.docker.io .
Then rebuild your containers with no cache :
docker-compose build --no-cache
Likely not Docker’s fault…at least not directly. Major Internet-wide outage with AWS services right now. Also affected include Reddit, IMDb, Venmo, CrunchyRoll, and Fortnite.
Of course, relying on a single third-party cloud provider is a risk that Docker chose to take on, so in that respect it is still their fault.


