Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker - Error response from daemon: received unexpected HTTP status: 503 Service Unavailable

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.
like image 607
jdoe1980 Avatar asked Oct 15 '19 17:10

jdoe1980


People also ask

How can I check my Docker status?

The operating-system independent way to check whether Docker is running is to ask Docker, using the docker info command. You can also use operating system utilities, such as sudo systemctl is-active docker or sudo status docker or sudo service docker status , or checking the service status using Windows utilities.

Which command lets review the Docker daemon configuration?

dockerd is the persistent process that manages containers. Docker uses different binaries for the daemon and client. To run the daemon you type dockerd . To run the daemon with debug output, use dockerd --debug or add "debug": true to the daemon.


1 Answers

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.

like image 164
Adiii Avatar answered Oct 27 '22 17:10

Adiii