= Docker Multiplatform = Through [[Linux/Qemu|qemu(1)]], it is possible to run containers for alternate architectures and platforms. <> ---- == Installation == For [[Linux/Arch|Arch]], try installing `qemu-user-static-binfmt`. For [[Linux/Debian|Debian]] and derivative distributions, try installing `binfmt-support` and `qemu-user-static`. It is also possible to install the binaries through `docker(1)`: {{{ sudo docker run --rm --privileged multiarch/qemu-user-static --reset -p yes }}} ---- == Usage == {{{ sudo docker run --rm -t arm64v8/ubuntu uname -m }}} ---- CategoryRicottone