You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker login is a VERY complicated process just to keep our login info out of a clear text file. Even following the multi-step article to use a password manager results in an hour's worth of work or more to figure out why it can't find pass, and I still haven't figured out why it can't find it when I just installed and initialized it. (HINT: the following does NOT work.)
GitHub authentication with git? pubkey pasted into the GitHub interface.
GitLab authentication? pubkey pasted into the GitLab interface.
Bitbucket authentication? pubkey pasted into the Bitbucket interface.
Docker authentication? Cleartext username and password unless you install some obscure software, configure that obscure software with GPG, and then hope you get lucky and Docker can find the obscure software it relies on.
Do we see a problem? Please make your client work like git does and allow devs to simply paste their pubkey into their docker.com account. It's ALWAYS best to keep to what people know so they don't have to learn something new just to use your product.
The text was updated successfully, but these errors were encountered:
@rickmacgillis the problem is that your are not obligated to use docker.com, you can set up a registrar server yourself. I think is important to keep in this way, check this link https://docs.docker.com/registry/spec/auth/, you can setup an OAuth2 server for authentication.
docker login
is a VERY complicated process just to keep our login info out of a clear text file. Even following the multi-step article to use a password manager results in an hour's worth of work or more to figure out why it can't findpass
, and I still haven't figured out why it can't find it when I just installed and initialized it. (HINT: the following does NOT work.)So, let's look at the usual way things work.
git
?pubkey
pasted into the GitHub interface.pubkey
pasted into the GitLab interface.pubkey
pasted into the Bitbucket interface.Do we see a problem? Please make your client work like
git
does and allow devs to simply paste their pubkey into their docker.com account. It's ALWAYS best to keep to what people know so they don't have to learn something new just to use your product.The text was updated successfully, but these errors were encountered: