1. 容器在退出时自动删除:docker run --rm web2.使用 rm 删除:docker rm web3.强制删除:docker rm -vf web或 docker rm -vf $(docker ps -a -q)注意 rm -f ,docker 发送 SIG_KILL 信号,立即终止接收过程4. docker kill5. docker stop注意: stop 发送 SIG_HUP 信号,只有 容器中的pid 为1 的进程才能收到