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.

Construye, (re)crea, inicia y se adjunta a contenedores para un servicio.

A menos que ya se estén ejecutando, este comando también inicia cualquier servicio vinculado.

Él docker-compose up comando agrega la salida de cada contenedor (esencialmente ejecutando docker-compose logs -f). Cuando el comando sale, todos los contenedores se detienen. Corriendo docker-compose up -d inicia los contenedores en segundo plano y los deja en ejecución.

Si hay contenedores existentes para un servicio y la configuración o la imagen del servicio se cambió después de la creación del contenedor, docker-compose up recoge los cambios deteniendo y recreando los contenedores (preservando los volúmenes montados). Para evitar que Compose detecte los cambios, utilice el --no-recreate bandera.

Si desea forzar a Compose a que se detenga y vuelva a crear todos los contenedores, use el --force-recreate bandera.

Si el proceso encuentra un error, el código de salida para este comando es 1.
Si el proceso se interrumpe usando SIGINT (ctrl + C) o SIGTERMlos contenedores se detienen y el código de salida es 0.
Si SIGINT o SIGTERM se envía de nuevo durante esta fase de apagado, los contenedores en ejecución se eliminan y el código de salida se 2.

higo, composición, componer, estibador, orquestación, cli, arriba