LoginSignup
7
3

More than 3 years have passed since last update.

M1 mac Dockerで「ERROR: Service 'mysql' failed to build」のエラー

Last updated at Posted at 2021-04-08

Dockerで
「ERROR: Service 'mysql' failed to build」
のエラーが出た

AppleSiliconを乗せているM1 Macのみに該当するエラー
まだM1のプラットフォームに合わせたMySQLが無く、
エラーが出る。

以下対処法

docker-compose.yml
version: "3"
services:
  mysql:
    platform: linux/x86_64 

platform: linux/x86_64
を追加

7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3