Skip to content

管理容器 | Docker

查看所有容器

bash
docker ps -a

停止容器

bash
docker stop 容器id

启动已停止容器

bash
docker start 容器id

删除容器

bash
docker rm 容器id