docker-compose up -dで以下のエラーが出た場合の対処法。
docker-compose up -d
Pulling mysql (mysql:5.7)...
5.7: Pulling from library/mysql
ERROR: no matching manifest for linux/arm64/v8 in the manifest list entries
以下のようにplatform: linux/x86_64
を追記する
services:
mysql:
platform: linux/x86_64
image: mysql:5.7
restart: always
tty: true
コメント