Search posts, tags, users, and pages
Naomi
full stack generalist
As Docker Desktop is no longer free to use, I spent my workday trying alternatives and setup Lima on Big Sur. Here are my notes that I will probably end up googling myself at some point :D brew install docker brew install docker-compose brew install ...
To use the new docker compose command you'll also need to symlink it as a docker plugin manually:
docker compose
mkdir -p ~/.docker/cli-plugins ln -sfn $(brew --prefix)/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose
Conor Brady
And if you run into docker-credential-desktop errors when trying to use docker{-, }compose try renaming credsStore to credStore in ~/.docker/config.json
docker-credential-desktop
docker{-, }compose
credsStore
credStore
~/.docker/config.json
To use the new
docker composecommand you'll also need to symlink it as a docker plugin manually:mkdir -p ~/.docker/cli-plugins ln -sfn $(brew --prefix)/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose