Posts Multi-Platform Docker Builds
Post
Cancel

Multi-Platform Docker Builds

There’s a fantastic project called QEMU that can emulate a whole bunch of platforms. With the recent buildx work, it’s easier than ever to use QEMU with Docker.

The QEMU integration relies on a Linux kernel feature with the slightly cryptic name of the binfmt_misc handler. When Linux encounters an executable file format it doesn’t recognise (i.e. one for a different architecture), it will check with the handler if there any “user space applications” configured to deal with the format (i.e. an emulator or VM). If there are, it will pass the executable to the application.

https://www.docker.com/blog/multi-platform-docker-builds/

origin - https://www.pipiscrew.com/?p=17854 multi-platform-docker-builds

This post is licensed under CC BY 4.0 by the author.
Contents

Trending Tags