yoncho`s blog
7. Docker rm 본문
rm은 CLI 명령어를 자주 써봤다면 익숙한 Remove의 축약 명령어이다.
container(s)를 제거할 때 쓰인다.
1. Rm 명령어 Option (참조 : https://docs.docker.com/engine/reference/commandline/rm/)
- Usage
$ docker rm [OPTIONS] CONTAINER [CONTAINER...]
- Option
- --force, -f : force the removal of a running container
- --link, -l : remove the specified link
- --volumes, -v : remove anonymous volumes associated with the container
2. 예제) 현재 멈춘 상태인 “test_httpd” Container를 제거하자
1. Container 전체 목록 표시 (명령어 : “$ docker ps -a”)
2. 제거할 Container 선택 및 명령 수행 (명령어 : “$ docker rm test_httpd”)
3. 정상적으로 제거되었는지 Container 목록 확인 (명령어 : “$ docker ps -a”)
'기술, 나의 공부를 공유합니다. > Docker' 카테고리의 다른 글
9. Dockerize a Restful API with Golang (0) | 2023.06.22 |
---|---|
8. Docker rmi (0) | 2023.06.22 |
6. Docker Run (Create + Start) (0) | 2023.06.22 |
5. Docker Stop (0) | 2023.06.22 |
4. Docker Start (0) | 2023.06.22 |
Comments