Docker Compose Always Force Build для одного сервиса - PullRequest
3 голосов
/ 28 марта 2019

Это часть моего файла docker-compose:

version: "3.2"
services:
  cachable_service:
    image: my/cachable_service:x.x
    build:
      context: .
      dockerfile: cachable_service_Dockerfile

  service_in_development:
    image: my/service_in_development:latest
    build:
      context: .
      dockerfile: Dockerfile
    depends_on:
      - cachable_service

Как сделать так, чтобы только изображение для service_in_development всегда создавалось с нуля, чтобы я получал там свой последний код?

Я изучил параметр cache_from в ссылке на файл docker-compose, но не смог найти четкого объяснения, что именно он делает.

Пояснения:

В этом вопросе я спрашивал о параметре принудительного перестраивания только определенных служб, используя параметр в самом файле docker-compose.yml.Но, если опция командной строки позволит мне сделать это, я бы тоже был рад этому сейчас.

Кроме того, я говорю о принудительной «перестройке» изображений.Не просто «отдых» службы.

1 Ответ

0 голосов
/ 28 марта 2019

Вы можете использовать команду ниже, чтобы перестроить все образы:

docker-compose up --build --force-recreate

, чтобы принудительно перестроить один сервис:

docker-compose up --build --force-recreate service-name-here

Больше полезных параметров в документации

Usage: up [options] [--scale SERVICE=NUM...] [SERVICE...]

Options:
    -d, --detach               Detached mode: Run containers in the background,
                               print new container names. Incompatible with
                               --abort-on-container-exit.
    --no-color                 Produce monochrome output.
    --quiet-pull               Pull without printing progress information
    --no-deps                  Don't start linked services.
    --force-recreate           Recreate containers even if their configuration
                               and image haven't changed.
    --always-recreate-deps     Recreate dependent containers.
                               Incompatible with --no-recreate.
    --no-recreate              If containers already exist, don't recreate
                               them. Incompatible with --force-recreate and -V.
    --no-build                 Don't build an image, even if it's missing.
    --no-start                 Don't start the services after creating them.
    --build                    Build images before starting containers.
    --abort-on-container-exit  Stops all containers if any container was
                               stopped. Incompatible with -d.
    -t, --timeout TIMEOUT      Use this timeout in seconds for container
                               shutdown when attached or when containers are
                               already running. (default: 10)
    -V, --renew-anon-volumes   Recreate anonymous volumes instead of retrieving
                               data from the previous containers.
    --remove-orphans           Remove containers for services not defined
                               in the Compose file.
    --exit-code-from SERVICE   Return the exit code of the selected service
                               container. Implies --abort-on-container-exit.
    --scale SERVICE=NUM        Scale SERVICE to NUM instances. Overrides the
                               `scale` setting in the Compose file if present.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...