Home  >  Article  >  Operation and Maintenance  >  What does docker pull mean?

What does docker pull mean?

藏色散人
藏色散人Original
2022-01-20 14:46:376519browse

docker pull is a command used to pull or update the specified image from the image warehouse. Its usage syntax is "docker pull [OPTIONS] NAME[:TAG|@DIGEST]".

What does docker pull mean?

The operating environment of this article: centOS6.8 system, Docker version 18.09.x, Dell G3 computer.

What does docker pull mean?

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

Syntax

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

OPTIONS description:

-a: Pull all tagged images

--disable-content-trust: Ignore the verification of the image, enabled by default

Example

Download the latest version of java image from Docker Hub.

docker pull java

Download all images whose REPOSITORY is java from Docker Hub.

docker pull -a java

[Recommended learning: "docker video tutorial"]

The above is the detailed content of What does docker pull mean?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn