java-common-mistakes icon indicating copy to clipboard operation
java-common-mistakes copied to clipboard

docker-compose.yml 在m1芯片的mac 上有版本错误

Open Timzhouyes opened this issue 3 years ago • 0 comments

原始 file 会报以下问题:ERROR: no matching manifest for linux/arm64/v8 in the manifest list entries 在指定 platform 之后解决,我的一个比较初级的解决方案是指定 platform 的版本:

  mysql57:
    image: mysql:5.7
    platform: linux/amd64
    container_name: common-mistakes-mysql57
···

Timzhouyes avatar Apr 13 '22 05:04 Timzhouyes