본문 바로가기
how to

how to fix Error response from daemon: unable to create manifests file: NotFound: content digest

by 즉흥 2025. 3. 31.
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
반응형

댓글