No such image
I just created an image, pushed it to docker.io and created a Pod template referencing this image. However, startup fails due to
Error response from daemon: No such image: $IMAGENAME
I can pull the image locally from my machine without being logged in to docker.io. Why is my Pod not able to pull the image?Solution:Jump to solution
Yep, solved. Building the image with
docker buildx build --platform linux/amd64
helped. Not a Runpod issue at all.7 Replies
Maybe post a screenshot of your template setting?
did u use the right syntax username/reponame:tag
Sure:
Here's the image in Docker Hub: https://hub.docker.com/r/pczora/text_generation_styletts2
Set container image to: pczora/text_generation_styletts2:0.0.1alpha1
Already tried, same result
Okay, looks like I got something mixed up with the architecture during build. I built and pushed it on macOS and am also able to pull it on my Macbook, but my other Linux server is complaining about the architecture
no image found in image index for architecture amd64, variant "", OS linux
- so probably it's not a Runpod issueSolution
Yep, solved. Building the image with
docker buildx build --platform linux/amd64
helped. Not a Runpod issue at all.