English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Docker pull command

Docker Command Reference

docker pull : Pull or update a specified image from the image repository

Syntax

docker pull [OPTIONS] NAME[:TAG|@DIGEST]

OPTIONS Description:

  • -a :Pull all tagged images

  • --disable-content-trust :Ignore image verification, default is enabled

Online Examples

Download the latest version of the java image from Docker Hub.

docker pull java

Download all images with REPOSITORY as java from Docker Hub.

docker pull -a java

Docker Command Reference