-
Hi, I am just starting out with colima and works great for one of my projects, however for a project that uses a private ECR repository I am getting a
My
FYI I tried the setting with and without the Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
abiosoft
Mar 9, 2023
Replies: 1 comment 1 reply
-
I think you should use ecr-credential-helper https://github.com/awslabs/amazon-ecr-credential-helper and modify your docker config to something to include the following. {
"credHelpers": {
"public.ecr.aws": "ecr-login",
"<AWS_ACCOUNT_ID>.dkr.ecr.<REGION>.amazonaws.com": "ecr-login"
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rainkinz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you should use ecr-credential-helper https://github.com/awslabs/amazon-ecr-credential-helper and modify your docker config to something to include the following.