docker compose pull

描述拉取服务镜像
用法docker compose pull [OPTIONS] [SERVICE...]

描述

拉取与文件中定义的服务关联的镜像,但不基于这些镜像启动容器compose.yaml

选项

选择违约描述
--ignore-buildable忽略可构建的镜像
--ignore-pull-failures拉取它能拉取的东西,并忽略拉取失败的镜像
--include-deps同时拉取声明为依赖项的服务
--policy应用纳入策略 (“missing”|”总是”)
-q, --quiet拉取而不打印进度信息

例子

请考虑以下几点:compose.yaml

services:
  db:
    image: postgres
  web:
    build: .
    command: bundle exec rails s -p 3000 -b '0.0.0.0'
    volumes:
      - .:/myapp
    ports:
      - "3000:3000"
    depends_on:
      - db

如果您在定义服务的文件所在的目录中运行,则 Docker 将拉取关联的镜像。例如,要调用在我们的示例中配置为 db 服务的 postgres 镜像, 您将运行 .docker compose pull ServiceNamecompose.yamldocker compose pull db

$ docker compose pull db
[+] Running 1/15
 ⠸ db Pulling                                                             12.4s
   ⠿ 45b42c59be33 Already exists                                           0.0s
   ⠹ 40adec129f1a Downloading  3.374MB/4.178MB                             9.3s
   ⠹ b4c431d00c78 Download complete                                        9.3s
   ⠹ 2696974e2815 Download complete                                        9.3s
   ⠹ 564b77596399 Downloading  5.622MB/7.965MB                             9.3s
   ⠹ 5044045cf6f2 Downloading  216.7kB/391.1kB                             9.3s
   ⠹ d736e67e6ac3 Waiting                                                  9.3s
   ⠹ 390c1c9a5ae4 Waiting                                                  9.3s
   ⠹ c0e62f172284 Waiting                                                  9.3s
   ⠹ ebcdc659c5bf Waiting                                                  9.3s
   ⠹ 29be22cb3acc Waiting                                                  9.3s
   ⠹ f63c47038e66 Waiting                                                  9.3s
   ⠹ 77a0c198cde5 Waiting                                                  9.3s
   ⠹ c8752d5b785c Waiting                                                  9.3s

docker compose pull尝试提取具有 build 部分的服务的镜像。如果拉取失败,它会让您知道必须构建此服务镜像。您可以通过设置 flag 来跳过此操作。--ignore-buildable