Bug report
Describe the bug
Sometimes when running supabase start it will return the error Error response from daemon: toomanyrequests: Rate exceeded
To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
- Delete docker image cache
supabase start
- Sometimes you will see the error
Expected behavior
- There should be documentation around ECR/Docker rate limits and how to mitigate them.
- I have tried using the docker-login action as well as aws-ecr-login which did not seem to affect the docker client in use here.
Perhaps ImagePullOptions.RegistryAuth can be exposed somehow?
https://github.com/moby/moby/blob/5f698d112134d27ffe9850bfd46708bd9fa35860/api/types/client.go#L278-L283
|
out, err := Docker.ImagePull(ctx, imageUrl, types.ImagePullOptions{}) |
Bug report
Describe the bug
Sometimes when running
supabase startit will return the errorError response from daemon: toomanyrequests: Rate exceededTo Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
supabase startExpected behavior
Perhaps
ImagePullOptions.RegistryAuthcan be exposed somehow?https://github.com/moby/moby/blob/5f698d112134d27ffe9850bfd46708bd9fa35860/api/types/client.go#L278-L283
cli/internal/utils/docker.go
Line 174 in 5a3fc3b