모든 컨테이너 확인

상태와 상관없이 모든 컨테이너의 목록을 확인합니다.

[root@localhost ~]# docker container ls --all

 

UP된 컨테이너만 확인

컨테이너 중 UP된 컨테이너만 목록을 확인합니다.

[root@localhost ~]# docker container ls

 

실행중인 컨테이너 상태 확인

[root@localhost ~]# docker container stats

 

모든 컨테이너 삭제

[root@localhost ~]# docker container rm --force $(docker container ls --all --quiet)