728x90
반응형
docker save 할 때 nable to create manifests file: NotFound 에러 해결방법
에러 내용
mac pro m4 환경에서 "docker pull --platform=amd64 cassandra:4"로 카산드라 4의 amd64 이미지를 받은 후에
docker save로 이미지를 tar로 추출하려는데 아래와 같은 에러 메시지가 출력되었다.
Error response from daemon: unable to create manifests file: NotFound: content digest
해결책
해결책은 간단한데
docker image rm cassandra:4.1 # 기존 이미지 삭제
docker pull --platform=linux/amd64 cassandra:4.1
docker run --rm cassandra:4.1 # 한 번 실행 후 종료시 컨테이너 제거
docker save -o cassandra.tar cassandra:4.1
끝.
728x90
반응형
'how to' 카테고리의 다른 글
how to set platform and docker pull (0) | 2024.10.23 |
---|---|
how to set "CyberChef" in synology using docker. (1) | 2024.04.22 |
how to use Dockerfile (0) | 2023.11.03 |
how to use pwndocker (0) | 2023.08.22 |
how to Copy the highlighted source code from visual studio to word (0) | 2023.07.23 |
how to solve "adb push" or "adb install" not working (0) | 2023.05.25 |
how to fix "Error message: crypto_alg: ARIA-CBC: not found" in openVPN (0) | 2023.04.25 |
how to set ssl certificate using "Let's encrypt" in nginx (0) | 2023.04.12 |
how to solve ERROR [internal] load metadata for docker.io/libaray/~~ (0) | 2022.06.02 |
how to solve "iPA file installation failed" on jailbreaked iOS (0) | 2022.04.11 |
댓글