有时在自己的环境中试了一堆container或是images,如何全部移掉系统中所有的images及container 呢?
这些命令提供给大家参考:
请注意,您确实了解docker中container及images是什么东西。
请勿随意运行如下的命令,在上线中的主机上:
stop all containers: 停止所有的container
docker kill $(docker ps -q)
remove all containers: 移除所有的container
docker rm $(docker ps -qa)
remove all docker images: 移除所有的docker images
docker rmi $(docker images -q)
注: 关於docker stop及docker kill差异,我们可透过如下命令查看说明:
docker help stop
The main process inside the container will receive
SIGTERM
, and after a grace period, SIGKILL
.docker help kill
The main process inside the container will be sent
SIGKILL
, or any signal specified with option --signal
.
No Comment
Post your comment