mirror of
https://github.com/docker/compose.git
synced 2025-05-04 06:30:13 +02:00
Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
22 lines
1.6 KiB
Markdown
22 lines
1.6 KiB
Markdown
# docker compose create
|
|
|
|
<!---MARKER_GEN_START-->
|
|
Creates containers for a service.
|
|
|
|
### Options
|
|
|
|
| Name | Type | Default | Description |
|
|
|:-------------------|:--------------|:----------|:----------------------------------------------------------------------------------------------|
|
|
| `--build` | | | Build images before starting containers. |
|
|
| `--dry-run` | | | Execute command in dry run mode |
|
|
| `--force-recreate` | | | Recreate containers even if their configuration and image haven't changed. |
|
|
| `--no-build` | | | Don't build an image, even if it's missing. |
|
|
| `--no-recreate` | | | If containers already exist, don't recreate them. Incompatible with --force-recreate. |
|
|
| `--pull` | `string` | `missing` | Pull image before running ("always"\|"missing"\|"never") |
|
|
| `--remove-orphans` | | | Remove containers for services not defined in the Compose file. |
|
|
| `--scale` | `stringArray` | | Scale SERVICE to NUM instances. Overrides the `scale` setting in the Compose file if present. |
|
|
|
|
|
|
<!---MARKER_GEN_END-->
|
|
|