-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using this credential helper prevents you from pulling from docker hub #474
Comments
Same problem here. |
same issue here had to override the DOCKER_CONFIG='~./docker/bla.json' to get it to work with other repositories |
What fixed this for me was to change {
"credsStore": "ecr-login"
} to {
"credHelpers": {
"public.ecr.aws": "ecr-login",
"<aws_account_id>.dkr.ecr.<region>.amazonaws.com": "ecr-login"
}
} in Both options are mentioned in the documentation but the latter is more interoperable, so I think the documentation should be updated to give more prominence to it. Many people will come here with limited knowledge of Docker credential helpers, as did I, and it will take them a while to understand what's going on. |
@hannes-ucsc are you able to still do:
with that config? because i have that exact config and it's failing with
|
I don't know. I don't use |
pretty easy to reproduce
follow the setup instructions
configure with the credsStore ecr-login (the credHelpers never worked for me)
pull an image from your private repo
then call docker login
Observe Error:
Error saving credentials: error storing credentials - err: exit status 1, out:
not implemented
The text was updated successfully, but these errors were encountered: