Skip to content
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

Credentials store docker-credential-osxkeychain exited with "User interaction is not allowed." #82

Open
tetherit opened this issue Aug 11, 2017 · 20 comments

Comments

@tetherit
Copy link

When I run docker-compose locally, it works just fine, but if I ssh into the machine I get the following:

$ docker-compose up                                                                             
Building web
Traceback (most recent call last):
  File "docker-compose", line 3, in <module>
  File "compose/cli/main.py", line 68, in main
  File "compose/cli/main.py", line 118, in perform_command
  File "compose/cli/main.py", line 926, in up
  File "compose/project.py", line 401, in up
  File "compose/service.py", line 311, in ensure_image_exists
  File "compose/service.py", line 888, in build
  File "site-packages/docker/api/build.py", line 207, in build
  File "site-packages/docker/api/build.py", line 254, in _set_auth_headers
  File "site-packages/docker/auth.py", line 85, in resolve_authconfig
  File "site-packages/docker/auth.py", line 129, in _resolve_authconfig_credstore
docker.errors.DockerException: Credentials store error: StoreError('Credentials store docker-credential-osxkeychain exited with "User interaction is not allowed.".',)
Failed to execute script docker-compose

Any ideas?

@tetherit tetherit changed the title User interaction is not allowed Credentials store docker-credential-osxkeychain exited with "User interaction is not allowed." Aug 11, 2017
@tetherit
Copy link
Author

If I click on the docker icon in the menu bar -> preferences -> and I untick "Securely store docker logins in macOS keychain" this problem goes away.

@juancarlosfarah
Copy link

I'm experiencing the same issue. Unticking as suggested by @xanview worked for me too, but it would good to know how to fix it without that workaround.

@aumana
Copy link

aumana commented Sep 27, 2017

I just experienced the same issue

@antipin
Copy link

antipin commented Oct 13, 2017

If it can help someone, I've got the same error when executed docker-compose up with no PATH env variable available.
It could happen if you are running docker-compose through some other tool. In my case it was an utility that merges .env files and runs next command with correspondent environment variables.

@ivanrvpereira
Copy link

@antipin to me it happens after an OSX crash and somehow the recovered iterm2 sessions are unusable.
Open a new iterm2 tab solves the problem.

@wcgcoder
Copy link

Recently I experienced this issue. I went to Keychain Access and locked/unlocked my local keychain. Then I restarted Docker for Mac.

@mprihoda
Copy link

Running security unlock-keychain in the problematic terminal session works for me.

It started to do this to me every time I log in via SSH or use tmux, since one of the last Docker updates (I'm on 17.12.0-ce-mac49 now).

@n4ss
Copy link
Contributor

n4ss commented Jul 18, 2018

We don't provide a way currently to execute an auto headless unlock of the keychain.

@ssbarnea
Copy link

Two years later and this is still a serious issue, killing any automation attempts.

I guess the only workaround to this is to go back to non unsing the keychain and getting used to all the runtime warnigns related to unsecured creadentials inside ~/.docker/config.json.

@jamesmehorter
Copy link

Ran into this today, and oddly just had to restart my mac :\

@raowaqasakram
Copy link

same problem.please anyone

@collinsmetto
Copy link

Trying the solution offered by @ghost i.e. clicking on the docker icon in the menu bar -> preferences -> and unticking "Securely store docker logins in macOS keychain" yielded an initialization error:

dockerpycreds.errors.InitializationError: docker-credential-osxkeychain not installed or not available in PATH
I reticked the "Securely store docker logins in macOS keychain" and did a docker login afresh. This solved the issue for me.

@Resch-Said
Copy link

For Windows and Docker Hub:
Docker -> rightclick -> settings -> Shared Drives -> activate your drive(probably C)

@Daniel123wq
Copy link

Solução para Windows (docker desktop) Faça o seguinte: docker -> configurações -> resoucers -> filesharing -> [disco do projeto] && login com uma conta no docker && restart docker.

@djismgaming
Copy link

I had to logoff from the Docker Desktop for mac to get rid of this obstacle

@vatervonacht
Copy link

vatervonacht commented Dec 13, 2020

This is still an issue. ssh into my macbook pro running docker desktop for mac, 2.5.0.1 (49550). If I try docker login via a remote SSH session I get the following:

(base) ➜  ~ docker login
Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.
Username: <my-username>
Password:
Error saving credentials: error storing credentials - err: exit status 1, out: `User interaction is not allowed.`

In iTerm2 running directly on macbook pro, everything is fine. Definitely related to remote SSH sessions on mac.

system.log

When I tail -f /var/log/system.log I see the following error message regardless of whether I am running locally or remotely.

Dec 12 23:30:15 myhost com.apple.xpc.launchd[1] (com.apple.xpc.launchd.domain.pid.docker-credenti.13519): Failed to bootstrap path: path = /usr/local/bin/docker-credential-osxkeychain, error = 2: No such file or directory

In both the success and failure scenarios, this error is logged upon entering the docker login command. After I enter username and password, the error is logged two more times in the successful scenario, but only logged one more time in the failure scenario.

@ajslater
Copy link

Shut down docker.
Remove the line:

  "credsStore" : "desktop"

from ~/.docker/config.json
Restart docker. Worked for me.
Solution failed at by reading this other issue: docker/for-mac#3774

@tonistiigi
Copy link
Member

tonistiigi commented Dec 22, 2020

This error means that your keychain is locked and credentials can't be accessed by the current session. Eg. it may stop working when you log in via ssh like #82 (comment) describes. To unlock the keychain run:

security -v unlock-keychain  ~/Library/Keychains/login.keychain-db

We should improve the error and print instructions for unlocking the keychain in the message.

@carlitorendon
Copy link

carlitorendon commented Feb 4, 2022

Shut down docker. Remove the line:

  "credsStore" : "desktop"

from ~/.docker/config.json Restart docker. Worked for me. Solution failed at by reading this other issue: docker/for-mac#3774

@ajslater, thank you for posting this simple solution. I don't know why anyone would put up with unlocking the keychain (requires typing password) on every terminal session (or vs code session). Also it may be a good idea for Docker to enhance the error message referencing that this is an option.

@snowdream
Copy link

Shut down docker. Remove the line:

"credsStore" : "desktop"
from ~/.docker/config.json Restart docker. Worked for me. Solution failed at by reading this other issue: docker/for-mac#3774

It works for me.
Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests