Docker命令
docker命令由一系列的docker子命令组成,例如下面所示
docker subcommand [option [options]...]
使用Docker搜索镜像命令
- 搜索镜像
docker search [images:tag][options]
docker search ubuntu:18.04
- 拉取镜像
docker pull [images:tag][options]
docker pull ubuntu:18.04
- 列出镜像
docker imges [options]
docker imges ls
- 删除镜像
docker rmi [options]
docker rmi ubuntu:18.04
操作容器
- 启动一个容器
docker run [options]
docker run -i -t ubuntu /bin/bash
- 启动,重启和启动退出一个容器
docker start [container id | container name] # 启动一个已经启动过的容器
docker restart [container id | container name]
docker stop [container id | container name]
- 进入容器
docker attach [options]
docker attach container_name
docker exec -i -t [container id | container name] [command]
- 导出和导入容器镜像
docker export [container id | container name] > export_name.[tar|zip...]
docker import [container id | container name | container url]
- 删除和清理器器
docker container rm [container id | container name]
# -f 选项可删除正在运行中的容器
docker container prune # 清理所有处于终止状态的容器
that‘s all