Skip to main content

Command Palette

Search for a command to run...

Macbook Pro M1 fix -Service 'mysql' failed to build : no matching manifest for linux/arm64/v8 in the manifest list entries

Updated
1 min read
Macbook Pro M1 fix -Service 'mysql' failed to build : no matching manifest for linux/arm64/v8 in the manifest list entries
L
I’m Lois Bassey, a Software Engineer with a strong focus on backend systems, infrastructure, and architecture. I write about building software that works in the real world, from backend engineering and deployment decisions to system design, infrastructure thinking, and the tradeoffs that come with building well. This space is where I share practical lessons, technical breakdowns, and thoughts from my work and experience as an engineer.

The newest Apple Silicon M1 chips are not compatible with some Docker images and end up throwing: no matching manifest for linux/arm64/v8 in the manifest list entries

To fix this error, run the following:

export DOCKER_BUILDKIT=0
export COMPOSE_DOCKER_CLI_BUILD=0
docker pull --platform linux/x86_64 mysql

After which you run your previous command that threw the above error in the first place.😃