This guide configures Colima’s Docker context to use Buildx as the default builder
- macOS 12+ (Apple Silicon or Intel)
- Colima installed via Homebrew
- Docker CLI
- Docker Buildx
Open a terminal and install colima and docker using homebrew
brew install colima
brew install dockerCheck docker version and verify sure you are using the homebrew binary
docker version
which docker brew install docker-buildxCheck wether the CLI plugin is installed.
ls ~/.docker/cli-pluginsNow link the plugin binary and make it the default builder
ln -sfn $(brew --prefix docker-buildx)/bin/docker-buildx ~/.docker/cli-plugins/docker-buildx
docker buildx install