1. 查看所有运行中的容器 docker ps 2. 查看所有容器 docker ps -a 3. 重启指定容器 docker restart 容器ID 4. 关闭指定容器 docker stop 容器ID 5. 删除容器 docker rm -f 容器ID </