Comment on Docker Hub Is DownComments−thomasfromcdnjs11moWas already struggling to do any work today and now my builds aren't working.https://xkcd.com/303/−thehamkercat11moI had some images in cache, but not all of them, and pull is failingfor example, i have redis:7.2-alpine in cache, but not golang:1.24.5-alpineI needed the golang image to start my dev-backendso i replaced FROM golang:1.24.5-alpine with FROM redis:7.2-alpine, and manually installed golang with apk in the redis container :)−zelphirkalt11moYou changed your base image and docker build process for a temporary outage? Or do you mean that this in general will be better, as you avoid one in-between image?−thehamkercat11moI changed just for that outage, because i couldn't pull the other image
Comments
Was already struggling to do any work today and now my builds aren't working.
https://xkcd.com/303/
I had some images in cache, but not all of them, and pull is failing
for example, i have redis:7.2-alpine in cache, but not golang:1.24.5-alpine
I needed the golang image to start my dev-backend
so i replaced FROM golang:1.24.5-alpine with FROM redis:7.2-alpine, and manually installed golang with apk in the redis container :)
You changed your base image and docker build process for a temporary outage? Or do you mean that this in general will be better, as you avoid one in-between image?
I changed just for that outage, because i couldn't pull the other image