Docker error: error getting credentials

Aaaah! Today I faced a strange error message from docker. => ERROR [internal] load metadata for docker.io/library/python:3.8-slim-buster 0.6s ------ > [internal] load metadata for docker.io/library/python:3.8-slim-buster: ------ failed to solve with frontend dockerfile.v0: failed to create LLB definition: rpc error: code = Unknown desc = error getting credentials - err: exec: "docker-credential-desktop.exe": executable file not found in $PATH, out: `` Thanks to Bertrand C for the solution. In ~/.docker/config.json change credsStore to credStore Source

Serve dotfiles directly from a git repository

Here is an interesting article which explains another way to store dotfiles. In a couple of words: store dotfiles into a git repository clone your git repository using a bare more and make working directory pointing to ${HOME} use dotfiles directly from the repository (without symbolic links) The only disadvantage is that all dotfiles must be inside one repository. It is not scalable approach in that sense that typically configuration files for the different programs are splitted into multiple repositories.