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

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

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.😃