2025-03-14 21:59:59 -06:00
|
|
|
# docker pull
|
|
|
|
|
|
|
|
|
|
> Download Docker images from a registry.
|
|
|
|
|
> More information: <https://docs.docker.com/reference/cli/docker/image/pull/>.
|
|
|
|
|
|
|
|
|
|
- Download a specific Docker image:
|
|
|
|
|
|
|
|
|
|
`docker pull {{image}}:{{tag}}`
|
|
|
|
|
|
|
|
|
|
- Download a specific Docker image in quiet mode:
|
|
|
|
|
|
2025-04-03 20:36:56 -06:00
|
|
|
`docker pull {{[-q|--quiet]}} {{image}}:{{tag}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Download all tags of a specific Docker image:
|
|
|
|
|
|
2025-04-03 20:36:56 -06:00
|
|
|
`docker pull {{[-a|--all-tags]}} {{image}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Download a Docker images for a specific platform, e.g. linux/amd64:
|
|
|
|
|
|
|
|
|
|
`docker pull --platform {{linux/amd64}} {{image}}:{{tag}}`
|
|
|
|
|
|
|
|
|
|
- Display help:
|
|
|
|
|
|
2025-04-03 20:36:56 -06:00
|
|
|
`docker pull {{[-h|--help]}}`
|