列出镜像docker images
拉取镜像docker pull 镜像名
搜索镜像docker search 镜像名
删除镜像docker rmi 镜像名
列出所有容器docker ps -a
停止容器docker stop 容器ID
重启容器docker restart 容器ID
删除容器docker rm -f 容器ID
关闭Dockersystemctl stop docker
开启Dockersystemctl start docker
重启Dockersystemctl restart docker