Latest web development tutorials

Docker pull command

Docker command Daquan Docker command Daquan


docker pull: pull or update the specified image from the mirror repository

grammar

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

OPTIONS Description:

  • -a: pulls all tagged image

  • --disable-content-trust: Ignore mirror check, enabled by default

Examples

Download the latest version of java image from Docker Hub.

docker pull java

Download as java REPOSITORY all mirrors from Docker Hub.

docker pull -a java

Docker command Daquan Docker command Daquan