M1 Mac環境でMySQL5.7のDockerコンテナを起動する方法 - How to launch a MySQL 5.7 Docker container
WEB開発(Web development)
2021-02-21 1:47
M1 Macbook ProでMySQL5.7のDockerコンテナを起動する方法について書きたいと思います。
と言っても、docker-compose.ymlファイルに以下の設定を追加するだけです。
platform: linux/x86_64
これで手元のMacでは問題なく動かすことができました。
参考にしたのはこちらの記事になります。
Apple M1 上の Docker は、x86_64向けのイメージも動く
Intel MacとM1 Macが併用されているような開発チームであれば、docker-composeの設定ファイルはGit管理から外し、開発者が自分の環境に合わせて書き換えられるように運用するのが良さそうです。
I would like to write about how to launch a Docker container for MySQL 5.7 on an M1 Macbook Pro.
I said, all you have to do is add the following settings to your docker-compose.yml file.
Platform: linux / x86_64
Now it works fine on my Mac.
If you manage a development team that uses both Intel Mac and M1 Mac, it seems better to remove the docker-compose configuration file from Git management and operate it so that the developer can rewrite it according to your environment.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.