Skip to content

Publish arm64 images #659

Closed
Closed
@tonycosentini

Description

@tonycosentini

Container platform

Podman/Docker

Version

Non-RHEL images hosted on Quay.

OS version of the container image

CentOS Stream 9

Bugzilla, Jira

No response

Description

Is it possible to start publishing arm64 images to Quay? I was planning on switching off of UBI8 and onto c9s, but there is no arm support.

UBI 8 example:

➜  docker manifest inspect registry.access.redhat.com/ubi9/python-311     
{
   "schemaVersion": 2,
   "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
   "manifests": [
      {
         "mediaType": "application/vnd.docker.distribution.manifest.v2+json",
         "size": 926,
         "digest": "sha256:9101b9924d06a4944649e9cb008496813479d66271ee1f2a1b6ddfc91228c97c",
         "platform": {
            "architecture": "amd64",
            "os": "linux"
         }
      },
      {
         "mediaType": "application/vnd.docker.distribution.manifest.v2+json",
         "size": 926,
         "digest": "sha256:d4b195e9afabfd9184f7d6ca58a5358ff9b11d6367d61c2d587bb6c695671097",
         "platform": {
            "architecture": "arm64",
            "os": "linux"
         }
      },
      {
         "mediaType": "application/vnd.docker.distribution.manifest.v2+json",
         "size": 926,
         "digest": "sha256:5eaecbc30e36eaf5c60c43515a1453af10df77f2c483535432eb66b656e1cf7a",
         "platform": {
            "architecture": "ppc64le",
            "os": "linux"
         }
      },
      {
         "mediaType": "application/vnd.docker.distribution.manifest.v2+json",
         "size": 926,
         "digest": "sha256:36f0e63073521a14a584619d84d3c5332e05dd65f6856853fa6064992876b28b",
         "platform": {
            "architecture": "s390x",
            "os": "linux"
         }
      }
   ]
}

c9s example:

➜ docker manifest inspect quay.io/sclorg/python-311-c9s               
{
	"schemaVersion": 2,
	"mediaType": "application/vnd.docker.distribution.manifest.v2+json",
	"config": {
		"mediaType": "application/vnd.docker.container.image.v1+json",
		"size": 16094,
		"digest": "sha256:a4469a80a000d2d24c745ab31c635ec3b0c479bf56462b1079e05f2ddccf9ae0"
	},
	"layers": [
		{
			"mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip",
			"size": 57769319,
			"digest": "sha256:a4fce492bde6a3b94c488710eb004997076e9fe948efab1b38a79566d55714bb"
		},
		{
			"mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip",
			"size": 16624490,
			"digest": "sha256:07ec094c651fd7fc83c388df7ecef7d3988ef10a5bb554cc30d5c852932b0fd1"
		},
		{
			"mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip",
			"size": 216161379,
			"digest": "sha256:fbe6cbc72bcfee27f8a40f7a1c94aa36907dfe21d142dd08a31049a2889bc405"
		},
		{
			"mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip",
			"size": 99443756,
			"digest": "sha256:4d499558816c75cd5cc0dbb50489895a04fc1598057d6353432009810001f47c"
		}
	]
}

Reproducer

On an arm-based machine without QEMU (in my case, a Gravitron EC2 instance), just run:

docker run --rm quay.io/sclorg/python-311-c9s python --version

and it will fail with:

WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
exec /usr/bin/container-entrypoint: exec format error

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions