32 comments

[ 2.6 ms ] story [ 57.7 ms ] thread
(comment deleted)
I 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 notice before says wonderful things about its reliability.

> I don't work on mission-critical software

> wondering what my alternate deployment routes are

If the stakes are low and you don't have any specific need for a persistent registry then you could skip it entirely and push images to production from wherever they are built.

This could be as simple as `docker save`/`scp`/`docker load`, or as fancy as running an ephemeral registry to get layer caching like you have with `docker push`/`docker pull`[1].

[1]: https://stackoverflow.com/a/79758446/3625

Development environment won't boot. Guess I'll go home early.
(comment deleted)
Yup, my Coolify deployments were failing and I didn't know why : https://softuts.com/docker-hub-is-down/

Also, isn't it weird that it takes so long to fix given the magnitude of the issue? Already down for 3 hours.

So that's why. This gave me the kick I needed to finally switch over the remaining builds to the pull-through cache.
I 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 :(

Is there a good alternative for DockerHub these days? Besides azure CR
Also GCP K8S have an partial outage! was this vibe coded release... insane...
All I really need is for Debian to have their own OCI image registry I can pull from. :)
Therefore keep a local registry mirror. You will get it from local cache all the time.
explains why my watchtower container was exploding
What's the easiest way to cache registries like docker, pypi, and npm these days?
Anyone have recommendations for an image cache? Native kubernetes a plus.

What would be really nice is a system with mutating admission webhooks for pods which kicks off a job to mirror the image to a local registry and then replaces the image reference with the mirrored location.

You can use Artifactory as a "front" for a variety of registries, including Docker, so it'll pull once and then use its cached image.
Somewhat unrelated, but GitLab put out a blog post earlier this year warning users about Docker Hub's rate limiting: https://about.gitlab.com/blog/prepare-now-docker-hub-rate-li...

We chose to move to GitLab's container registry for all the images we use. It's pretty easy to do and I'm glad we did. We used to only use it for our own builds.

The package registry is also nice. I only wish they would get out of the "experimental" status for apt mirror support.

Exceeded their quota, probably, based on my recent experience with dockerhub
(comment deleted)