#docker #kubernetes #container #orchestrator #microservice #infrastructure-as-code #devops #ci #cd

제목commit후, 원본 image 지우는 방법2019-09-24 11:55
작성자 Level 10

image에서 container를 만들어서 작업하다가 commit을 한 경우,

앞서 원본 image를 지우고자 하는 경우가 있습니다.


이 경우 아래와 같이 image에 대한 상태 옵션을 줘야 하니, 참조하세요.

출처는 https://stackoverflow.com/questions/40112543/remove-existing-image-when-using-docker-commit 입니다.


docker rmi $(docker images -f "dangling=true" -q)
댓글