MACのM1に関して、Dockerではまったケースがあったので共有しておく。
dockerを使ってmattermostを立ち上げようとしたところ以下のようなエラーがでた。
その筋で詳しい方によると、結構あるあるでハマるポイントらしい。
# docker run –platform=linux/amd64 –name mattermost-preview -d –publish 8065:8065 mattermost/mattermost-preview
WARNING: The requested image’s platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
以下のように修正すると起動できた。
# docker run –platform=linux/amd64 –name mattermost-preview -d –publish 8065:8065 mattermost/mattermost-preview