Add macOS Colima support to setup and deployment docs#474
Open
Add macOS Colima support to setup and deployment docs#474
Conversation
macOS users using Colima instead of Docker Desktop were hitting missing buildx errors and had no documentation to guide them. Add Colima as a supported Docker runtime, document buildx installation, and ensure setup-local installs buildx automatically. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ret2libc
reviewed
Feb 18, 2026
ret2libc
reviewed
Feb 19, 2026
Comment on lines
+58
to
+63
| After starting Colima, ensure the buildx plugin is linked: | ||
| ```bash | ||
| brew install docker-buildx | ||
| mkdir -p ~/.docker/cli-plugins | ||
| ln -sfn $(brew --prefix docker-buildx)/lib/docker/cli-plugins/docker-buildx ~/.docker/cli-plugins/docker-buildx | ||
| ``` |
Collaborator
There was a problem hiding this comment.
was this necessary instead? I think installing docker-buildx is enough?
Member
Author
There was a problem hiding this comment.
this one is required. docker-buildx requires manual linking. Homebrew doesn't write to ~/.docker/
see: brew info docker-buildx (Caveats)
Collaborator
There was a problem hiding this comment.
==> Caveats
docker-buildx is a Docker plugin. For Docker to find the plugin, add "cliPluginsExtraDirs" to ~/.docker/config.json:
"cliPluginsExtraDirs": [
"/opt/homebrew/lib/docker/cli-plugins"
]
Member
Author
There was a problem hiding this comment.
Yes! It is. Do you have a preference on which method you want in the docs/or both? I can update it.
ret2libc
reviewed
Feb 19, 2026
Comment on lines
+822
to
+825
| brew install docker-buildx | ||
| mkdir -p ~/.docker/cli-plugins | ||
| ln -sfn "$(brew --prefix docker-buildx)/lib/docker/cli-plugins/docker-buildx" \ | ||
| ~/.docker/cli-plugins/docker-buildx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The local development setup only documented Docker Desktop, missing Colima users who need to install docker-buildx separately and set DOCKER_BUILDKIT=1.