English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
docker pull : Pull or update a specified image from the image repository
docker pull [OPTIONS] NAME[:TAG|@DIGEST]
OPTIONS Description:
-a :Pull all tagged images
--disable-content-trust :Ignore image verification, default is enabled
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