I recently upgraded to a new Macbook pro m1 and when running docker I was getting the following error: ERROR: no matching manifest for linux/arm64/v8 in the manifest list entries Within the docker-compose.yml file I added the following: services: db: platform: linux/x86_64 image: mysql:5.7
If you're not using docker compose you can add the --platform linux/amd64 flag to the docker run command. docker pull --platform linux/x86_64 mysql