Skip to content

Instantly share code, notes, and snippets.

@sebastianwebber
Last active July 14, 2022 04:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebastianwebber/87927d5d3e570c4a18b4374b1d08abd1 to your computer and use it in GitHub Desktop.
Save sebastianwebber/87927d5d3e570c4a18b4374b1d08abd1 to your computer and use it in GitHub Desktop.
enable arm support for docker in fedora 36 on x86_64 machines

Enable arm support for docker in fedora 36 on x86_64 machines

From: https://www.stereolabs.com/docs/docker/building-arm-container-on-x86/

  1. Install the necessary packages:

    sudo dnf install qemu qemu-user-binfmt qemu-user-static
  2. Run qemu setup:

    docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
  3. Test it:

    docker run --rm -t arm64v8/ubuntu uname -m
  4. enjoy!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment