- uninstall docker desktop
- quit the app, delete
/Applications/Docker.app, clean up
~/.dockerand~/Library/Group Containers/group.com.docker. - install colima. it doesn't come with the
dockercli. if everything was uninstalled, just install again with brew while at it:
brew install colima docker docker-compose
brew services start colima
-
as is warned during installation,
docker composefails withunknown command: docker compose. homebrew'sdockeron apple silicon only checks old linux paths for plugins (like/usr/local/lib/docker/cli-plugins), not/opt/homebrew/lib, -
point docker at the right folder. add this to
~/.docker/config.json:
{
"cliPluginsExtraDirs": ["/opt/homebrew/lib/docker/cli-plugins"]
}
docker composeis back up