Docker 常用命令
命令格式:
docker 选项
1. 镜像仓库相关
1) 搜索指定的镜像
- 可以搜索出指定的条件相关的镜像
docker search 条件
2) 获取指定的镜像
- 从仓库获取镜像
- tag 表示版本号,如不添加,默认拉取 latest(最新版)
docker pull 镜像:tag
- 例子:
- 安装 centos 7 版本
docker pull centos:7
3) 推送至仓库
docker push 镜像: tag
2. 关于本地镜像
1) 查看本地所有的镜像
docker images
- 例如:
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
busybox latest 83aa35aa1c79 13 days ago 1.22MB
httpd latest c5a012f9cf45 3 weeks ago 165MB
centos latest 5e35e350aded 4 months ago 203MB
2) 删除本地镜像
- 可以同时删除多个,空格隔开
docker rmi ]镜像Name or 镜像ID]:tag
- 删除httpd(name)
docker rmi httpd
- 删除httpd( ID )
docker rmi c5a012f9cf45
- 如果删除失败,可能是由容易在使用镜像
- 需要先删除容器
3) 查看镜像的详细信息
docker inspect [ 镜像Name or 镜像 id ]
例如:
[root@localhost ~]# docker inspect httpd
[
{
"Id": "sha256:c5a012f9cf45ce0634f5686cfb91009113199589bd39b683242952f82cf1cec1",
"RepoTags": [
"httpd:latest"
],
"RepoDigests": [
"httpd@sha256:946c54069130dbf136903fe658fe7d113bd8db8004de31282e20b262a3e106fb"
],
……………………
4) 导出镜像
- 将 镜像打包导出至系统,可以实现镜像迁移
docker save 镜像 > 导出文件路径
- 可以使用 -o 选项指定输出文件路径
docker save -o >导出文件路径 镜像
- 例子:将 centos 导出
[root@localhost ~]# docker save httpd > httpd.tar
[root@localhost ~]# ls /root/httpd.tar
/root/httpd.tar
# 将httpd镜像删除
[root@localhost ~]# docker rmi httpd
# 再次查看
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
busybox latest 83aa35aa1c79 13 days ago 1.22MB
centos latest 5e35e350aded 4 months ago 203MB
5) 导入镜像
docker load < 镜像压缩文件
- 或者使用 -i 、 --input
docker load --input 镜像压缩文件
- 例子:导入镜像
docker load < httpd.tar
# 再次查看
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
busybox latest 83aa35aa1c79 13 days ago 1.22MB
httpd latest c5a012f9cf45 3 weeks ago 165MB
centos latest 5e35e350aded 4 months ago 203MB
6) 修改镜像 tag
docker tag [ 镜像Name or 镜像 id ] [ 新镜像Name ]:[ 新 tag ]
- 相当于复制,原有的镜像还会存在
3. 关于容器
- docker run 命令参数:
选项 | 作用 |
---|---|
-i | 以交互式运行 |
-t | 以终端的方式运行 |
-d | 给一个长ID,并后台运行,且 前 12 位,为 容器短 ID |
–name | 容器指定一个名字代替ID编号 |
–add-host [主机名]:[ip] | 为容器 hosts 文件追加 host , 默认会在 hosts 文件最后追加内容:主机名]:[容器ip] |
-p | 映射端口 宿主:容器 ,如不指定宿主端口,则随机映射 |
–dns | 指定 dns地址,默认与宿主机一直 |
- 创建容器
docker create -it --name 容器Name 镜像 运行环境
例如: 创建一个容器为 new
docker create -it --name new centos /bin/bash
2) 查看运行的容器
- 查看正在运行的容器
docker ps
- 查看所有运行的容器
- 包括停止掉的
docker ps -a
- -a 表示为所有
3) 运行(启动)容器
docker run [容器Name OR 容器ID] 环境变量
例子:运行容器,并执行 一条命令
[root@localhost ~]# docker run centos /bin/echo hello world
hello world
4) 后台运行容器
- 以交互式、终端后台运行,并生成长ID
docker run -it -itd --name test centos /bin/bash
7f148ada62bd54aa37e6cf618fda318862fbbfa5768f0f7d8453f0ef09e32de1
5) 进入正在运行的容器(attach)
- Docker attach可以attach到一个已经运行的容器的stdin,然后进行命令执行的动作。
但是需要注意的是,如果从这个stdin中exit,会导致容器的停止。
docker attach [容器Name OR 容器ID]
6) 进入正在运行的容器(exec)
- 这种方式可以替代ssh或者nsenter、nsinit方式,在容器内进行操作
- 退出不会关闭容器
docker exec -it [ 镜像Name OR 镜像ID ] 环境变量
例:
docker exec -it 7f148ada62bd /bin/bash
7) 进入正在运行的容器(脚本)
- 编写脚本程序
[root@localhost ~]# vim /usr/bin/docker-enter
#!/bin/sh
if [ -e $(dirname "$0")/nsenter ]; then
# with boot2docker, nsenter is not in the PATH but it is in the same folder
NSENTER=$(dirname "$0")/nsenter
else
NSENTER=nsenter
fi
if [ -z "$1" ]; then
echo "Usage: `basename "$0"` CONTAINER [COMMAND [ARG]...]"
echo ""
echo "Enters the Docker CONTAINER and executes the specified COMMAND."
echo "If COMMAND is not specified, runs an interactive shell in CONTAINER."
else
PID=$(docker inspect --format "{{.State.Pid}}" "$1")
if [ -z "$PID" ]; then
exit 1
fi
shift
OPTS="--target $PID --mount --uts --ipc --net --pid --"
if [ -z "$1" ]; then
# No command given.
# Use su to clear all host environment variables except for TERM,
# initialize the environment variables HOME, SHELL, USER, LOGNAME, PATH,
# and start a login shell.
"$NSENTER" $OPTS su - root
else
# Use env to clear all host environment variables.
"$NSENTER" $OPTS env --ignore-environment -- "$@"
fi
fi
- 赋予执行权限
chmod +x /usr/bin/docker-enter
8) 开始/停止/重启容器
-
针对于已经运行的容器的操作,进行开始、停止、重启
-
开始
docker start 容器
- 停止
docker stop 容器
- 重新启动
docker restart
- 强制关闭容器
docker kill
9) 挂起容器
- 将容器如虚拟一样挂起
docker pause 容器
- 取消挂起
docker unpause 容器
10) 删除容器
docker rm [ 容器名 or 容器 id ]
11) 查看容器详细信息
docker inspect [ 容器名 or 容器 id ]
12) 查看容器中正在运行的进程
docker top [ 容器名 or 容器 id ]
13) 将容器保存为镜像
- 可用于复制,部署集群
docker commit [ 容器名 or 容器 id ] [ 镜像名 ]:[ tag ]