without haste but without rest

Apple Silicon - no matching manifest for linux/arm64/v8 in the manifest list entries 본문

DevOps/Docker

Apple Silicon - no matching manifest for linux/arm64/v8 in the manifest list entries

JinungKim 2022. 3. 2. 20:21

Error

"no matching manifest for linux/arm64/v8 in the manifest list entries"

 

 

Solved

 

Docker (Apple Silicon/M1 Preview) MySQL "no matching manifest for linux/arm64/v8 in the manifest list entries"

I'm running the latest build of the Docker Apple Silicon Preview. I created the tutorial container/images and it works fine. When I went to create a custom YAML file and run docker-compose I get the

stackoverflow.com

 

방법 1. platfrom 필드 추가

services:
  db:
    platform: linux/x86_64
    image: mysql:5.7
    ...

 

 

방법 2. 커맨드 라인 예시

docker pull --platform linux/x86_64 mysql
Comments