一、查看容器,得到容器id(container id)
docker ps -a
二、停止容器
docker stop 容器id
三、删除容器
docker rm 容器id
四、查看镜像,得到镜像id (image id)
docker images
五、删除镜像
docker rmi 镜像id