docker命令汇总
序号 |
类别 |
简述 |
命令 |
功能 |
说明 |
1 |
整体管理 |
安装 |
yum install docker-engine |
centos上安装docker |
Ubuntu上安装docker |
2 |
整体管理 |
版本 |
docker version |
查看docker版本 |
|
3 |
整体管理 |
状态 |
systemctl status docker.service |
查看docker服务状态 |
|
4 |
整体管理 |
开机启动 |
systemctl enable docker.service |
设置docker开机启动 |
|
5 |
整体管理 |
启动 |
systemctl start docker.service |
启动docker服务状态 |
|
6 |
整体管理 |
关停 |
systemctl stop docker.service |
关停docker服务 |
|
7 |
整体管理 |
重启 |
systemctl restart docker.service |
重启docker服务 |
systemctl restart docker |
8 |
整体管理 |
重载 |
systemctl daemon-reload |
修改docker配置文件后,重载配置 |
需要重启 |
9 |
镜像 |
镜像列表 |
docker images |
查看本地docker镜像 |
|
10 |
镜像 |
镜像详情 |
docker inspect 47b19964fb50 |
通过镜像的唯一标识ID,查看镜像详情 |
|
11 |
镜像 |
标签 |
docker tag ubuntu ubuntu-local:ubu-latest |
为本地镜像添加新的tag标签(公有仓库的准备) |
|
12 |
标签 |
docker tag redis 10.1.2.3:5000/redis |
为本地镜像添加新的tag标签(私有仓库的准备) |
||
13 |
镜像 |
存出镜像 |
docker save -o newmi nickistre/centos-lamp |
存出镜像 |
newmi:新镜像文件的名称 |
14 |
镜像 |
载入镜像 |
docker load < newmi |
载入镜像 |
|
15 |
镜像 |
载入镜像 |
docker --input newmi |
载入镜像 |
|
16 |
镜像 |
删除镜像 |
docker rmi ubuntu-local:ubu-latest |
根据标签删除镜像 |
|
17 |
镜像 |
删除镜像 |
docker rmi 47b19964fb50 |
根据镜像的唯一标识ID删除镜像,将删除所有为该ID的镜像 |
|
18 |
镜像 |
远程搜索镜像 |
docker search lamp |
远程镜像仓库中,搜索lamp的镜像 |
|
19 |
镜像 |
远程获取镜像 |
docker pull nickistre/centos-lamp |
获取镜像 |
|
20 |
镜像 |
远程上传镜像 |
docker push daoke/lamp:centos7 |
远程上传镜像(公共仓库) |
|
21 |
镜像 |
远程上传镜像 |
docker push 10.1.2.3:5000/redis |
远程上传镜像(私有仓库) |
|
22 |
容器 |
容器列表 |
docker ps -a |
查看所有容器 |
|
23 |
容器 |
容器列表 |
docker ps |
查看所有正在运行的容器 |
|
24 |
容器 |
创建容器 |
docker create -it ubuntu:latest /bin/bash |
创建容器 |
-i 表示让容器的输入保持打开 |
25 |
容器 |
启动容器 |
docker start 3aa2cee9c0c0 |
启动容器 |
|
26 |
容器 |
创建并启动容器 |
docker run -dit ubuntu:latest /bin/bash |
创建并启动容器 |
-d 表示docker容器以守护形式在后台运行。 |
27 |
容器 |
关停容器 |
docker stop 3aa2cee9c0c0 |
关停容器 |
|
28 |
容器 |
进入容器 |
docker exec -it 3aa2cee9c0c0 /bin/bash |
进入容器,但不是所有容器都可以进入。 |
|
29 |
容器 |
退出容器 |
exit |
退出容器。进入后可以退出。 |
|
30 |
容器 |
导出容器 |
docker export 3aa2cee9c0c0 > ubuntu-tar |
导出容器 |
此时会在当前目录下生成该容器的文件 ubuntu-tar |
31 |
容器 |
导入容器 |
cat ubuntu-tar | docker import - ubuntu:test |
导入容器 |
把文件 ubuntu-tar 拷贝到B电脑上去,把容器文件导入B电脑的镜像库 |
32 |
容器 |
删除容器 |
docker rm dd3fc187b3f6 |
删除容器(推荐方式)。容器需要在停止状态。 |
|
33 |
容器 |
删除容器 |
docker rm -f dd3fc187b3f6 |
强制删除容器 |
|
34 |
容器 |
删除容器 |
docker rm $(docker ps -aq) |
删除所有容器(先终止运行的容器) |
docker stop $(docker ps -q) & docker rm $(docker ps -aq) |
35 |
其他 |
使用Dockerfile生成镜像 |
docker build -t httpd:centos . |
使用Dockerfile生成镜像 |
-t 指定镜像标签 |
36 |
其他 |
登录仓库 |
docker login |
登录仓库(公共仓库) |
|
37 |
其他 |
登录仓库 |
docker login 192.9.100.127:5000 |
登录仓库(私有仓库) |