ドッカープルコマンド

2108 ワード

イメージを使用するには、どちらかをDockerホストに位置することができますかdocker registry . Dockerhub あなたが複数のコミュニティイメージを得ることができるところから、Dockerのofficalなレジストリです.Ubuntu、Python、CentOS、NginX、Apache、Java、NodeJsなどのDockerHubの公式とベンダー固有の中古画像のトンがあります.
必要な画像のDockerハブリポジトリを閲覧することができます.



その他のオプションはDocker検索コマンドを使ってイメージを探すことです.
ドッカーサーチ
例:

 

The pull command has following options

ubuntu@ip-172-31-1-61:~$ docker pull --help

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

Pull an image or a repository from a registry

Options:
-a, --all-tags Download all tagged images in the repository
--disable-content-trust Skip image verification (default true)
--platform string Set platform if server is multi-platform capable
-q, --quiet Suppress verbose output

 

 

To pull the image, you can use the pull command, the syntax is

docker pull <image:tag>

 

Example:

今すぐあなたのDockerホストのイメージを確認することができます.


あなたの考えを共有してください.