LoginSignup
13
7

More than 1 year has passed since last update.

M1 Mac で Docker mysql イメージをビルドする

Posted at

M1 Mac で Docker の mysql イメージをビルドするには linux/amd64 を明示的に指定する必要がある。

Dockerfile

Dockerfile を利用している場合は FROM にオプションを渡すことができる。

FROM --platform=linux/amd64 mysql:5.7

docker-compose.yaml

docker-compose.yaml を利用している場合は platform を設定する。

services:
  db:
    image: mysql
    platform: linux/amd64
13
7
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
13
7