Docker Pull Command
docker pull: Pull or update an image from the image repository
Syntax
docker pull [OPTIONS] NAME[:TAG|@DIGEST]
OPTIONS Description:
-
-a: Pull all tagged images
-
--disable-content-trust: Skip image verification, default is enabled
Examples
Download the latest Java image from Docker Hub.
docker pull java
Download all images with the REPOSITORY name Java from Docker Hub.
docker pull -a java