|
How to pull a Docker Image
Author: Venkata Sudhakar
Docker is an open platform to develop, ship, and run containerized applications.
It separates infra from application to ease application development and support anywhere development strategy. The below example shows how to pull a Docker Image from CLI.
03 | Usage: docker pull [OPTIONS] NAME[:TAG| @DIGEST ] |
05 | Pull an image or a repository from a registry |
08 | -a, --all-tags Download all tagged images in the repository |
09 | --disable-content-trust Skip image verification ( default true ) |
10 | --platform string Set platform if server is multi-platform |
12 | -q, --quiet Suppress verbose output |
16 | Using default tag: latest |
17 | latest: Pulling from library/ubuntu |
18 | 83ee3a23efb7: Pull complete |
19 | db98fc6f11f0: Pull complete |
20 | f611acd52c6c: Pull complete |
21 | Digest: sha256:703218c0465075f4425e58fac086e09e1de5c340b12976ab9eb8ad26615c3715 |
22 | Status: Downloaded newer image for ubuntu:latest |
23 | docker.io/library/ubuntu:latest |
|
|