13

I'm trying to pull/run an image with the following command:

docker run -d --name sonarqube -p 9000:9000 sonarqub

But I got the following error:

Error response from daemon: received unexpected HTTP status: 503 Service Unavailable.
Abdulrahman Bres
  • 2,603
  • 1
  • 20
  • 39
jdoe1980
  • 189
  • 1
  • 1
  • 10

2 Answers2

12

The issue is not your end. Docker registry is down at the moment.

enter image description here

status.docker.com

You can check for docker-registry status, it should work once it back to normal.

Adiii
  • 54,482
  • 7
  • 145
  • 148
-1

Sometimes it happens. I also faced this issue. I just reloaded the daemon and restarted the docker service. It solved this issue. You can use the below commands.

$ sudo systemctl daemon-reload #THIS IS RESCUE COMMAND…
$ sudo systemctl restart docker
$ sudo systemctl status docker
Ali Gökkaya
  • 408
  • 6
  • 20