# Pastebin yTBwRpgh $ podman build --platform linux/amd64,linux/arm64 --manifest joetest:stable $ podman manifest inspect joetest:stable { "schemaVersion": 2, "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "manifests": [ { "mediaType": "application/vnd.oci.image.manifest.v1+json", "size": 757, "digest": "sha256:d5cc344d1f80002e6fb6bb042275909455177a86c4e8c21fbff7eee0560da897", "platform": { "architecture": "arm64", "os": "linux" } }, { "mediaType": "application/vnd.oci.image.manifest.v1+json", "size": 757, "digest": "sha256:0b02e2da30b7ae9000d5158a3d23d5b54e5346e6c7e770955e22ba7c29fde4eb", "platform": { "architecture": "amd64", "os": "linux" } } ] } $ podman run --rm --arch amd64 localhost/joetest:stable arch x86_64 $ podman run --rm --arch arm64 localhost/joetest:stable arch WARNING: image platform (linux/amd64) does not match the expected platform (linux/arm64) aarch64 $ podman run --rm --arch arm64 localhost/joetest:stable cat /etc/arch WARNING: image platform (linux/amd64) does not match the expected platform (linux/arm64) aarch64