What does docker pull mean?

藏色散人
Release: 2022-01-20 14:46:37
Original
6607 people have browsed it

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]
Copy after login

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
Copy after login

Download all images whose REPOSITORY is java from Docker Hub.

docker pull -a java
Copy after login

[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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template