tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Docker > How to pull a Docker Image

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.

01C:\>docker pull --help
02 
03Usage:  docker pull [OPTIONS] NAME[:TAG|@DIGEST]
04 
05Pull an image or a repository from a registry
06 
07Options:
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
11                                capable
12  -q, --quiet                   Suppress verbose output
13 
14 
15C:\>docker pull ubuntu
16Using default tag: latest
17latest: Pulling from library/ubuntu
1883ee3a23efb7: Pull complete
19db98fc6f11f0: Pull complete
20f611acd52c6c: Pull complete
21Digest: sha256:703218c0465075f4425e58fac086e09e1de5c340b12976ab9eb8ad26615c3715
22Status: Downloaded newer image for ubuntu:latest
23docker.io/library/ubuntu:latest

 
  


  
bl  br