| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 | command: docker compose upshort: Create and start containerslong: |-  Builds, (re)creates, starts, and attaches to containers for a service.  Unless they are already running, this command also starts any linked services.  The `docker compose up` command aggregates the output of each container (liked `docker compose logs --follow` does).  When the command exits, all containers are stopped. Running `docker compose up --detach` starts the containers in the  background and leaves them running.  If there are existing containers for a service, and the service’s configuration or image was changed after the  container’s creation, `docker compose up` picks up the changes by stopping and recreating the containers  (preserving mounted volumes). To prevent Compose from picking up changes, use the `--no-recreate` flag.  If you want to force Compose to stop and recreate all containers, use the `--force-recreate` flag.  If the process encounters an error, the exit code for this command is `1`.  If the process is interrupted using `SIGINT` (ctrl + C) or `SIGTERM`, the containers are stopped, and the exit code is `0`.usage: docker compose up [SERVICE...]pname: docker composeplink: docker_compose.yamloptions:- option: abort-on-container-exit  value_type: bool  default_value: "false"  description: |    Stops all containers if any container was stopped. Incompatible with -d  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: always-recreate-deps  value_type: bool  default_value: "false"  description: Recreate dependent containers. Incompatible with --no-recreate.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: attach  value_type: stringArray  default_value: '[]'  description: Attach to service output.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: attach-dependencies  value_type: bool  default_value: "false"  description: Attach to dependent containers.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: build  value_type: bool  default_value: "false"  description: Build images before starting containers.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: detach  shorthand: d  value_type: bool  default_value: "false"  description: 'Detached mode: Run containers in the background'  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: environment  shorthand: e  value_type: stringArray  default_value: '[]'  description: Environment variables  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: exit-code-from  value_type: string  description: |    Return the exit code of the selected service container. Implies --abort-on-container-exit  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: force-recreate  value_type: bool  default_value: "false"  description: |    Recreate containers even if their configuration and image haven't changed.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: no-build  value_type: bool  default_value: "false"  description: Don't build an image, even if it's missing.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: no-color  value_type: bool  default_value: "false"  description: Produce monochrome output.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: no-deps  value_type: bool  default_value: "false"  description: Don't start linked services.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: no-log-prefix  value_type: bool  default_value: "false"  description: Don't print prefix in logs.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: no-recreate  value_type: bool  default_value: "false"  description: |    If containers already exist, don't recreate them. Incompatible with --force-recreate.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: no-start  value_type: bool  default_value: "false"  description: Don't start the services after creating them.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: quiet-pull  value_type: bool  default_value: "false"  description: Pull without printing progress information.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: remove-orphans  value_type: bool  default_value: "false"  description: Remove containers for services not defined in the Compose file.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: renew-anon-volumes  shorthand: V  value_type: bool  default_value: "false"  description: |    Recreate anonymous volumes instead of retrieving data from the previous containers.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: scale  value_type: stringArray  default_value: '[]'  description: |    Scale SERVICE to NUM instances. Overrides the `scale` setting in the Compose file if present.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: false- option: timeout  shorthand: t  value_type: int  default_value: "10"  description: |    Use this timeout in seconds for container shutdown when attached or when containers are already running.  deprecated: false  experimental: false  experimentalcli: false  kubernetes: false  swarm: falsedeprecated: falseexperimental: falseexperimentalcli: falsekubernetes: falseswarm: false
 |