(docker笔记):Docker 镜像的基本命令
程序员文章站
2022-03-30 10:42:16
...
目录
Docker 镜像的基本命令
帮助命令
docker version # 显示docker版本信息
docker info # docker的系统信息,包括镜像和容器的数量
docker 命令 --help # 帮助命令
docker images 镜像命令
- 查看所有本地主机上的镜像
docker images [OPTIONS] [REPOSITORY[:TAG]]
Name, shorthand | Description |
--all , -a |
Show all images (default hides intermediate images) |
--digests |
Show digests |
--filter , -f |
Filter output based on conditions provided |
--format |
Pretty-print images using a Go template |
--no-trunc |
Don’t truncate output |
--quiet , -q |
Only show numeric IDs |
- 或者使用help命令
-a, --all 列出所有镜像
--digests 显示摘要
-f, --filter filter 根据提供的条件过滤输出
--format string 指定返回值的模板文件
--no-trunc 不截断输出,显示完整的镜像信息
-q, --quiet 只显示镜像ID
- 参数:
REPOSITORY | 镜像的仓库源 |
TAG | 镜像的标签 |
IMAGE ID | 镜像的id |
CREATED | 镜像的创建时间 |
SIZE | 镜像的大小 |
docker search 镜像搜索
- 网页版可以通过 Docker Hub 搜索镜像
- 地址:https://registry.hub.docker.com/search?q=&type=image
- Linux命令行里用docker search搜索
选项:
名称,简写 | 默认 | 描述 |
--automated |
仅显示自动构建 |
|
--filter , -f |
根据提供的条件过滤输出 | |
--format |
使用Go模板进行打印搜索 | |
--limit |
25 |
最多搜索结果数 |
--no-trunc |
不要截断输出 | |
--stars , -s |
仅显示至少x个星标 |
-
例如:
- 通过收藏或其他来过滤检索结果 --filter=stars=3000 (搜索出来的镜像就是STARS大于3000的 )
docker pull 下载镜像
# 下载镜像 docker pull 镜像名[:tag]
# tag可以指定版本,没有的话默认使用最新版
[aaa@qq.com ~]# docker pull mysql
Using default tag: latest # 如果不写tag 默认就是最新版
latest: Pulling from library/mysql
d121f8d1c412: Pull complete # 分层下载,docker image 的核心,联合文件系统
f3cebc0b4691: Pull complete
1862755a0b37: Pull complete
489b44f3dbb4: Pull complete
690874f836db: Pull complete
baa8be383ffb: Pull complete
55356608b4ac: Pull complete
dd35ceccb6eb: Pull complete
429b35712b19: Pull complete
162d8291095c: Pull complete
5e500ef7181b: Pull complete
af7528e958b6: Pull complete
Digest: sha256:e1bfe11693ed2052cb3b4e5fa356c65381129e87e38551c6cd6ec532ebe0e808# 签名信息
Status: Downloaded newer image for mysql:latest
docker.io/library/mysql:latest # 真实地址
# docker pull mysql
# docker pull docker.io/library/mysql:latest
# 两者等价的
指定版本下载
- 版本必须存在,可知docker hub上查看
# 指定版本下载 版本不可乱写 可在 docker hub 上查看
[aaa@qq.com ~]# docker pull mysql:5.7 # 加上了tag标签后可指定版本下载
5.7: Pulling from library/mysql
d121f8d1c412: Already exists # 可以看到这里会显示一些文件已存在
f3cebc0b4691: Already exists # 这就是分层下载的好处 可以共用一些文件
1862755a0b37: Already exists
489b44f3dbb4: Already exists
690874f836db: Already exists
baa8be383ffb: Already exists
55356608b4ac: Already exists
277d8f888368: Pull complete
21f2da6feb67: Pull complete
2c98f818bcb9: Pull complete
031b0a770162: Pull complete
Digest: sha256:14fd47ec8724954b63d1a236d2299b8da25c9bbb8eacc739bb88038d82da4919
Status: Downloaded newer image for mysql:5.7
docker.io/library/mysql:5.7
docker rmi 删除镜像
- 可以通过IMAGE ID删除,也可以根据镜像名称来删除
# 删除指定id的镜像
docker rmi -f 容器id
# 删除多个镜像
docker rmi -f 容器id 容器id 容器id
# 删除全部镜像
docker rmi -f $(docker images -aq)
上一篇: 第十章 内核同步方法
下一篇: docker基本命令