All I really need is for Debian to have their own OCI image registry I can pull from. :)
Docker Hub Is Down
51–60 of 110 posts
Re: Docker Hub Is Down
#52Anyone 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.
[[registry]]
location = "docker.io"
[[registry.mirror]]
location = "core.yourharbor.example.com/hub"
Where hub is the name of the proxy you configured for, in this case, docker.io. It's not quite what you're asking for but it can definitely be transparent to users. I think the bonus is that if you look at a podspec it's obvious where the image originates and you can pull it yourself on your machine, versus if you've mutated the podspec, you have to rely on convention.Re: Docker Hub Is Down
#53Earlier quoted context omitted.
Quay.io is nice (but you have to memorize the spelling of its name)
Or start a pronunciation revolution and say "kway". It's all made up anyway ;-)
Re: Docker Hub Is Down
#54We 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.
Re: Docker Hub Is Down
#55Re: Docker Hub Is Down
#56Earlier quoted context omitted.
Or start a pronunciation revolution and say "kway". It's all made up anyway ;-)
It _is_ pronounced "kway", and it _is_ a real word: https://www.merriam-webster.com/dictionary/quay !
Re: Docker Hub Is Down
#57What's the easiest way to cache registries like docker, pypi, and npm these days?
Re: Docker Hub Is Down
#58What's the easiest way to cache registries like docker, pypi, and npm these days?
Re: Docker Hub Is Down
#59Re: Docker Hub Is Down
#60Earlier quoted context omitted.
You pull the images you want to use, preferably with some automated process, then push them to your own repo. And anyways use your own repo when pulling for dev/production. It saves you from images disappearing as well.
What do you like using for your own repo? Artifactory? Something else?