Docker에서 컨테이너를 제거하고 싶지만 삭제할 때 오류가 발생합니다.
컨테이너를 제거하기 전에 다음 단계는 기존 컨테이너 목록을 참조하십시오.
sts@Yudi:~/docker$ sudo docker ps -as
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES SIZE
78479ffeba5c ubuntu "/bin/bash" 42 hours ago Exited (0) 42 hours ago sharp_wescoff 81 B (virtual 187.7 MB)
0bd2b54678c7 training/webapp "python app.py" 5 days ago Exited (0) 5 days ago backstabbing_ritchie 0 B (virtual 323.7 MB)
0adbc74a3803 training/webapp "python app.py" 5 days ago Exited (143) 5 days ago drunk_feynman 0 B (virtual 323.7 MB)
하나는 목록을 삭제하고 싶습니다. 즉 "training / webapp" 이지만 오류가 발생했습니다.
sts@Yudi:~/docker$ sudo docker rmi training/webapp
Error response from daemon: conflict: unable to remove repository reference "training/webapp" (must force) - container 0bd2b54678c7 is using its referenced image 54bb4e8718e8
Error: failed to remove images: [training/webapp]
컨테이너가 이미지에서 실행 중인지 여부
도와주세요