Install buildx
#273
Replies: 8 comments 14 replies
-
ARCH=amd64 # change to 'arm64' for m1
VERSION=v0.8.2
curl -LO https://github.com/docker/buildx/releases/download/${VERSION}/buildx-${VERSION}.darwin-${ARCH}
mkdir -p ~/.docker/cli-plugins
mv buildx-${VERSION}.darwin-${ARCH} ~/.docker/cli-plugins/docker-buildx
chmod +x ~/.docker/cli-plugins/docker-buildx
docker buildx version # verify installation |
Beta Was this translation helpful? Give feedback.
-
Hi together, Thank you for this solution! I created for my this installer Script to install with GitHub CLI the latest https://github.com/fullheart/my-dev-env/blob/main/osx/docker/colima/install_latest_buildx.sh |
Beta Was this translation helpful? Give feedback.
-
For me, this worked: brew install docker-buildx
# Follow the caveats mentioned in the install instructions:
# mkdir -p ~/.docker/cli-plugins
# ln -sfn $(which docker-buildx) ~/.docker/cli-plugins/docker-buildx
docker buildx install # To keep using the `docker build` install but with buildkit: https://docs.docker.com/engine/reference/commandline/buildx_install/ Edit 1: Updated specific location in |
Beta Was this translation helpful? Give feedback.
-
I addition to @amitds1997 answer, I had to set
|
Beta Was this translation helpful? Give feedback.
-
brew install docker-buildx
mkdir -p ~/.docker/cli-plugins
ln -sfn $HOMEBREW_PREFIX/opt/docker-buildx/bin/docker-buildx ~/.docker/cli-plugins/docker-buildx |
Beta Was this translation helpful? Give feedback.
-
My solution: brew install docker-buildx
mkdir -p ~/.docker/cli-plugins
ln -s $(which docker-buildx) ~/.docker/cli-plugins/docker-buildx
colima restart
docker buildx version |
Beta Was this translation helpful? Give feedback.
-
@abiosoft Would it not make sense to include the lack of buildx and how to install it somewhere in the documentation? I'm using werf.io which by default uses the docker-engine. Building images didn't work until I disabled buildkit. I suppose installing buildx will also make it work but curios if any of the project should point this out for Colima users. |
Beta Was this translation helpful? Give feedback.
-
Apologies for resuscitating this but my OCD is really killing me. I am running Colima and I am using Is there an alternative way that allow both commands to work just fine without needing to play around with env vars all the time? Many thanks for your help. Thank you. |
Beta Was this translation helpful? Give feedback.
-
It doesn’t matter much from my perspective, because I’m using
buildkit
(viaDOCKER_BUILDKIT=1
), but I’m curious how one would installbuildx
on macOS for use with Colima, asbrew install docker
does not seem to include it. I can obviously install Docker desktop, but that sort of defeats the purpose.Those of you using it, how have you installed it? Manual plug-in installation?
Beta Was this translation helpful? Give feedback.
All reactions