I'm trying to configure Docker for two different registries. (One ECR and docker.io) I need to configure ECR one with ecr-login
and docker.io with simple auth
but I'm failing to configure these at the same time. It gives the following error:
Error saving credentials: error storing credentials - err: exit status 1, out:
not implemented
Here is my ~/.docker/config.json
{
"auths": {
"https://index.docker.io/v1/": {
"auth": "BASE64-STRING"
}
},
"credsStore": "ecr-login"
}
Why is Docker trying to use credsStore
when auth
is already available?