Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker automated build shows empty Dockerfile

I have created a Dockerfile here and set up automated build for it on the docker hub, but nothing seems to happen. The build just shows "pending" and the Dockerfile on docker hub is empty. What am I doing wrong?

like image 306
aquavitae Avatar asked Sep 29 '22 04:09

aquavitae


1 Answers

The Dockerfile on the hub gets updated after the build runs. Also, the pending for the build means it just hasn't run yet. Sometimes it takes a while. Do you have your github account Linked in the Settings section of the Docker repository? You can reach the status page to see if anything is broken here: https://status.docker.com/.

By the way, I have several projects on Docker hub, I went to one of them just now and clicked 'Build' (this isn't necessary if your github is linked, the auto build does that), and it is stuck in Pending. Sometimes it takes a LONG time.

There has been at least one outage at Docker registry in the last 3 months while I was actively using it. This might not be an outage, but, it could be :-( It could also be a big load on Docker hub.

like image 98
Greg Avatar answered Oct 05 '22 06:10

Greg