Docker 命令
- 帮助命令
docker –help
镜像操作
搜索镜像
docker search hello-world下载镜像
docker pull hello-world查看本地已下载所有镜像
docker images查看镜像历史
docker history hello-world备份镜像
docker tag hello-word:last hello-world:v2删除镜像
docker rmi hello-word:last删除未使用过的镜像
docker image prune导出镜像
docker save -o hello-world:last.tar hello-world:last导入镜像
docker load -i hello-world:last.tar查看镜像信息
docker image inspact nginx
容器操作
查看所有容器 [-q 编号] [-a active 启动的容器]
docker ps [-a] [-q]启动容器 [-d 后台启动]
docker run -d –name nginx1 nginx:last停止容器
docker stop nginx1启动容器()
docker start nginx1删除容器
docker rm nginx1批量删除运行中容器
docker rm $(docker ps -q) -f创建容器并进入
docker run -it –name nginx1 nginx:last /bin/bash退出容器
exit进入容器
docker exec -it nginx1 /bin/bash通过容器创建镜像
docker commit -m ‘laowang’ nginx1 nginx:v1查看容器信息
docker container inspact nginx1