-
Notifications
You must be signed in to change notification settings - Fork 3
Switch Docker Compose to Pull Images from ECR #136
Description
Describe the issue
Currently, our e2e tests rely on public Docker images hosted on AWS's public ECR. Due to rate limits on these public repositories, we've encountered issues with toomanyrequests: Rate exceeded during image pulls. Although retries have mitigated the problem, it’s not a permanent solution and could cause delays or failures under heavy load.
Describe the improvement you'd like
We must switch our Docker Compose configuration to pull images from our private Amazon ECR repository. This will prevent rate limiting issues and improve the reliability of our tests.
Describe alternatives you've considered
Implementing additional retries when pulling public images. While this has helped temporarily, it doesn't address the core problem of rate limits.