DEV Community

Clavin June
Clavin June

Posted on β€’ Originally published at clavinjune.dev on

Podman Support Multi Arch

Sunday Snippet #19 podman support multi arch

$ podman machine ssh
# inside podman machine
$ sudo rpm-ostree install qemu-user-static
$ sudo systemctl reboot
# outside podman machine, wait for podman machine done restarting
$ podman run -it --rm --arch=amd64 alpine:3.14 uname -m
x86_64
$ podman run -it --rm --arch=arm64 alpine:3.14 uname -m
aarch64
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

The Most Contextual AI Development Assistant

Pieces.app image

Our centralized storage agent works on-device, unifying various developer tools to proactively capture and enrich useful materials, streamline collaboration, and solve complex problems through a contextual understanding of your unique workflow.

πŸ‘₯ Ideal for solo developers, teams, and cross-company projects

Learn more

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay