We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The development section of the readme (https://github.com/docker/docker-credential-helpers/#development) specifies the input to credential helpers, but does not specify how the helpers should output the result.
Specifically:
get
store
list
I tried returning the payload in get and was not successful in making my helper work with docker.
The text was updated successfully, but these errors were encountered:
For anyone stumbling on this like me, the format is to output to stdout a JSON payload looking like this:
{"Username":"","Secret":""}
Sorry, something went wrong.
No branches or pull requests
The development section of the readme (https://github.com/docker/docker-credential-helpers/#development) specifies the input to credential helpers, but does not specify how the helpers should output the result.
Specifically:
get
return the payload as provided tostore
?list
output?I tried returning the payload in
get
and was not successful in making my helper work with docker.The text was updated successfully, but these errors were encountered: