DockerHub rate limit exceeded #330
Answered
by
dflook
Anton-Shutik
asked this question in
Q&A
-
I have an issue with dockerhub rate limit, since have a lot of jobs running on my self-hosted runner. Is there any way I can specify my own pull-through (AWS ECR for example) in my Pull down action image 'danielflook/terraform-github-actions@sha256:31f49b44966fdd5a6595ba90b8ca2d0226199f82c8bc1826654b00b5d8e04fc3'
/usr/local/bin/docker pull danielflook/terraform-github-actions@sha[2]
Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit
Warning: Docker pull failed with exit code 1, back off 2.56 seconds before retry.
/usr/local/bin/docker pull danielflook/terraform-github-actions@sha256:31f49b44966fdd5a6595ba90b8ca2d0226199f82c8bc1826654b00b5d8e04fc3
Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit
Warning: Docker pull failed with exit code 1, back off 8.524 seconds before retry.
/usr/local/bin/docker pull danielflook/terraform-github-actions@sha256:[3]
Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit
Error: Docker pull failed with exit code 1 |
Beta Was this translation helpful? Give feedback.
Answered by
dflook
Feb 23, 2024
Replies: 1 comment 4 replies
-
There is a published variant that uses ghcr, which doesn't seem to have dockerhubs low rate limit. You can use it by adding '-gchr' to the action version. e.g. jobs:
build:
steps:
- uses: dflook/terraform-plan@v1.41.2-ghcr |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
Anton-Shutik
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is a published variant that uses ghcr, which doesn't seem to have dockerhubs low rate limit.
You can use it by adding '-gchr' to the action version.
e.g.