Search code examples
dockerapple-silicon

no matching manifest for linux/arm64/v8 in the manifest list entries on a MacBook Pro2 Apple Silicon chip


I am not able to no matching manifest for linux/arm64/v8 in the manifest list entries on a MacBook Pro2 Apple Silicon chip error seen

docker pull eclipse-temurin:20-jre-alpine
20-jre-alpine: Pulling from library/eclipse-temurin
no matching manifest for linux/arm64/v8 in the manifest list entries

Solution

  • Looking at the tags on dockerhub it seems like the 20-jre-alpine tag is only available for amd64 architechture.

    If you do not have a specific reason to need an alpine based image there is the 20-jre tag that has a linux/arm64/v8 version.

    docker pull eclipse-temurin:20-jre
    

    You can look at this page to see all tags for your architechture.