|
|
|
|
|
by ic4l
237 days ago
|
|
This broke our builds since we rely on several public Docker images, and by default, Docker uses docker.io. Thankfully, AWS provides a docker.io mirror for those who can't wait: FROM public.ecr.aws/docker/library/{image_name}
In the error logs, the issue was mostly related to the authentication endpoint:▪ https://auth.docker.io → "No server is available to handle this request" After switching to the AWS mirror, everything built successfully without any issues. |
|