I couldn't pull docker image from GitHub Container Registry #25426
-
I published my image on GitHub Container Registry and it is public now. And then I ran
How can I pull this image? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Odd, that command looks correct, and I was just able to download the manifest without issue. If you just now made the image public, maybe the setting just took a little longer than expected to become active? |
Beta Was this translation helpful? Give feedback.
-
Thank you for your replying. I made this image public some time ago so it might be not time problem, I think. So this is other problem?? |
Beta Was this translation helpful? Give feedback.
-
Well, there’s one more thing I can think of: The download I did was anonymous. If you’re logged in (using |
Beta Was this translation helpful? Give feedback.
-
After running Thank you so much. |
Beta Was this translation helpful? Give feedback.
Well, there’s one more thing I can think of: The download I did was anonymous. If you’re logged in (using
docker login
), check if the token you’re using has the “read:packages” scope. If it doesn’t, you need to either update the token so it has the scope, or try logging out (docker logout ghcr.io
) and doing an anonymous pull.