-
Notifications
You must be signed in to change notification settings - Fork 173
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
docker build triggers useless gpg passphrase dialog #250
Comments
ok, to analyze the situation, I replaced both these tools...
#!/usr/bin/env bash
echo "$@" | tee -a /home/hero/args.txt
cat - | tee -a /home/hero/stdin.txt and then ran The result is:
And sure enough (once I put back the original tools) and run: gpg -d --quiet --yes --compress-algo=none --no-encrypt-to /home/albert/.password-store/docker-credential-helpers/cHVblablabla=/AWS.gpg I get the same dialog, asking for the passphrase. Why is PS:
(Should the pass gpg key used for docker-credential-helpers... not have a passphrase????) |
Why is a normal By the way: It shows:
I think Well I recently deleted How can I go about fixing it? |
I've now done
and now (magically)
But: What's going on exacly? (Any pointers to good documentation, to help me understand whats going on?) |
I'm on linux (working with docker engine). I started fiddling with
docker-credential-pass
in order to be able to do this:aws ecr-public get-login-password --region us-east-1 --profile myprofile \ | docker login --username AWS --password-stdin public.ecr.aws/z7f783hdj
ok that's now working. but...
Problem
Now everytime I do
I first get a useless gpg diaglog window asking for my passphrase:
I just hit
Cancel
and then (and only then) the actual build starts.How do I get rid of this useless dialog. Why is it coming??
My details:
Thanks for tipps and suggestions.
The text was updated successfully, but these errors were encountered: