This message was deleted.
# rancher-desktop
a
This message was deleted.
n
Yes, this should definitely be possible. You might need to create a buildx builder first. Under Linux I run something like this to set up a fresh multiarch build environment
Copy code
#!/bin/bash

docker pull tonistiigi/binfmt
docker run --privileged --rm tonistiigi/binfmt --uninstall qemu-*
docker run --privileged --rm tonistiigi/binfmt --install all
docker buildx rm multiarch
docker buildx create --name multiarch --driver docker-container --use
docker buildx inspect --bootstrap
h
I build and run images on an M1 without any problems. I don't user the
--platform
switch.