前言
docker pull
语法格式
docker pull [OPTIONS] NAME[:TAG|@DIGEST]
options说明
option | 作用 |
---|
-a, --all-tags | 拉取所有 tagged 镜像 |
–disable-content-trust | 忽略镜像的校验,默认开启 |
-q, --quiet | 概要输出 |
–platform string | 若服务支持多平台,这里可以设置平台 |
使用示例
未指定tag
- 从Docker Hub下载jtomcat最新版镜像
docker pull java tomcat
dh@DH:~$ docker pull tomcat
Using default tag: latest
latest: Pulling from library/tomcat
2b55860d4c66: Pull complete
49a58ffb4a94: Pull complete
8889343dc9d4: Pull complete
5c321d92dfdb: Pull complete
65e12e19b4c9: Pull complete
31c5670ba66a: Pull complete
4196dee71f9b: Pull complete
Digest: sha256:bb81645575fef90e48e6f9fff50e06d5b78d4ac9d2683845401164ba1ddfe199
Status: Downloaded newer image for tomcat:latest
docker.io/library/tomcat:latest
-a 拉取所有 tagged 镜像
- 从Docker Hub下载REPOSITORY为tomcat的所有镜像
docker pull -a tomcat