Is there a good alternative for DockerHub these days? Besides azure CR
Docker Hub Is Down
21–30 of 110 posts
Re: Docker Hub Is Down
#22Earlier quoted context omitted.
I guess the best way would be to have a self-hosted pull-through registry with a cache. This way you'd have all required images ready even when dockerhub is offline. Unfortunately that does not help in an outage because you cannot fill the cache now.
You might still have it on your dev box or build box docker image ls docker tag name/name:version your.registry/here/name/name:version docker push your.registry/here/name/name:version
Re: Docker Hub Is Down
#23I was hoping google cloud artifact registry pull-thru caching would help. Alas, it does not. I can see an image tag available in the cache in my project on cloud.google.com, but after attempting to pull from the cache (and failing) the image is deleted from GAR :(
> "When a pull is attempted with a tag, the Registry checks the remote to ensure if it has the latest version of the requested content. Otherwise, it fetches and caches the latest content."
So if the authentication service is down, it might also affect the caching service.
Re: Docker Hub Is Down
#24I was hoping google cloud artifact registry pull-thru caching would help. Alas, it does not. I can see an image tag available in the cache in my project on cloud.google.com, but after attempting to pull from the cache (and failing) the image is deleted from GAR :(
Re: Docker Hub Is Down
#25Re: Docker Hub Is Down
#26Re: Docker Hub Is Down
#27Is there a good alternative for DockerHub these days? Besides azure CR
Re: Docker Hub Is Down
#28Is there a good alternative for DockerHub these days? Besides azure CR
Basically all my Docker images were being built from Github repos anyways, so I just switched to Github's container registry.
Re: Docker Hub Is Down
#29I didn't even really realize it was a SPOF in my deploy chain. I figured at least most of it would be cached locally. Nope, can't deploy. I don't work on mission-critical software (nor do I have anyone to answer to) so it's not the end of the world, but has me wondering what my alternate deployment routes are. Is there a mirror registry with all the same basic images? (node/alpine) I suppose the fact that I didn't no…