Shell Script 문법 정리
Title: Bash Shell Script 문법 정리 Author: DongDongE Tags: Programming Release: 2021.02.08 [Shell
Docker 중지된 컨테이너만 제거해보도록 하며, 실행중인 컨테이너는 제거가 되지 않습니다. prune(잘라내기) 옵션을 통해 제거 하겠습니다.
docker container prune
dongdonge@dongdonge$ sudo docker container prune --help
Usage: docker container prune [OPTIONS]
Remove all stopped containers
Options:
--filter filter Provide filter values (e.g. 'until=<timestamp>')
-f, --force Do not prompt for confirmation
위 옵션을 기반으로 진행 해보도록 하겠습니다.
dongdonge@dongdonge$ sudo docker container prune
WARNING! This will remove all stopped containers.
Are you sure you want to continue? [y/N] y
Deleted Containers:
f2f2fac3ebf20469235ea463bc743c4ab27c4cef422ab9c7e521d12b782ee55a
Total reclaimed space: 27B
출력된 결과를 보면 하나의 컨테이너가 중단이 되어 있어 제거된걸 볼 수 있습니다.
또한 제거 작업이다 보니 진행 도중 확실히 제거할지 여부를 물어봅니다.
제거를 원하면 Y, 원치 않으면 N를 입력하시면 됩니다.