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:21Error
"no matching manifest for linux/arm64/v8 in the manifest list entries"
Solved
방법 1. platfrom 필드 추가
services:
db:
platform: linux/x86_64
image: mysql:5.7
...
방법 2. 커맨드 라인 예시
docker pull --platform linux/x86_64 mysql
'DevOps > Docker' 카테고리의 다른 글
docker 컨테이너가 OS 환경변수를 설정을 저장하는 경로 (0) | 2022.03.10 |
---|---|
django test Dockerfile template (0) | 2022.03.03 |
docker no left space on device (0) | 2022.02.08 |
Docker 개념과 기본 커맨드 (0) | 2021.12.10 |
도커 레지스트리 서버 구축 (0) | 2021.06.02 |
Comments