Earlier 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 !
Docker Hub Is Down
61–70 of 110 posts
Re: Docker Hub Is Down
#62Re: Docker Hub Is Down
#63Anyone 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.
Re: Docker Hub Is Down
#64Earlier quoted context omitted.
It _is_ pronounced "kway", and it _is_ a real word: https://www.merriam-webster.com/dictionary/quay !
I know quay is a real word - it's not normally pronounced like "kway" but like "key". But only because enough people agree on that - that's what I mean by made up. The rules are just a majority agreement for both meaning and pronunciation.
Re: Docker Hub Is Down
#65I 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 :(
I think it was likely caused by the cache trying to compare the tag with Docker Hub: https://docs.docker.com/docker-hub/image-library/mirror/#wha... > "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 servic…
Re: Docker Hub Is Down
#66Anyone 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.
Re: Docker Hub Is Down
#67What's the easiest way to cache registries like docker, pypi, and npm these days?
The images I use the most, we pull and push to our own internal registry, so we have full control. There are still some we pull from Docker Hub, especially in the build process of our own images. To work around that, on AWS, you can prefix the image with public.ecr.aws/docker/library/ for example public.ecr.aws/docker/library/python:3.12 and it will pull from AWS's mirror of Docker Hub.
I believe anyone can pull from the public ecr, not just clients in AWS
Re: Docker Hub Is Down
#68Anyone 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.
Re: Docker Hub Is Down
#69Anyone 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.