Skip to content

Instantly share code, notes, and snippets.

@thomashartm
Last active September 11, 2025 08:21
Show Gist options
  • Save thomashartm/cce01be0e10d7edee8fbe9d9cdf5006d to your computer and use it in GitHub Desktop.
Save thomashartm/cce01be0e10d7edee8fbe9d9cdf5006d to your computer and use it in GitHub Desktop.
Set up buildx with Colima and Docker Engine on MacOS

Set up buildx with Colima and Docker Engine on MacOS

This guide configures Colima’s Docker context to use Buildx as the default builder

Requirements

  • macOS 12+ (Apple Silicon or Intel)
  • Colima installed via Homebrew
  • Docker CLI
  • Docker Buildx

Installation

Open a terminal and install colima and docker using homebrew

brew install colima
brew install docker

Check docker version and verify sure you are using the homebrew binary

docker version
which docker 
brew install docker-buildx

Check wether the CLI plugin is installed.

ls ~/.docker/cli-plugins

Now 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment