mirror of https://github.com/docker/docs.git
vendor: github.com/docker/compose/v2 v2.24.7
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
parent
204f5af8f5
commit
581f102fa8
|
@ -13,6 +13,7 @@ Creates containers for a service
|
||||||
| `--no-build` | | | Don't build an image, even if it's policy |
|
| `--no-build` | | | Don't build an image, even if it's policy |
|
||||||
| `--no-recreate` | | | If containers already exist, don't recreate them. Incompatible with --force-recreate. |
|
| `--no-recreate` | | | If containers already exist, don't recreate them. Incompatible with --force-recreate. |
|
||||||
| `--pull` | `string` | `policy` | Pull image before running ("always"\|"missing"\|"never"\|"build") |
|
| `--pull` | `string` | `policy` | Pull image before running ("always"\|"missing"\|"never"\|"build") |
|
||||||
|
| `--quiet-pull` | | | Pull without printing progress information |
|
||||||
| `--remove-orphans` | | | Remove containers for services not defined in the Compose file |
|
| `--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. |
|
| `--scale` | `stringArray` | | Scale SERVICE to NUM instances. Overrides the `scale` setting in the Compose file if present. |
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,7 @@ Create and start containers
|
||||||
| `--timestamps` | | | Show timestamps |
|
| `--timestamps` | | | Show timestamps |
|
||||||
| `--wait` | | | Wait for services to be running\|healthy. Implies detached mode. |
|
| `--wait` | | | Wait for services to be running\|healthy. Implies detached mode. |
|
||||||
| `--wait-timeout` | `int` | `0` | Maximum duration to wait for the project to be running\|healthy |
|
| `--wait-timeout` | `int` | `0` | Maximum duration to wait for the project to be running\|healthy |
|
||||||
|
| `-w`, `--watch` | | | Watch source code and rebuild/refresh containers when files are updated. |
|
||||||
|
|
||||||
|
|
||||||
<!---MARKER_GEN_END-->
|
<!---MARKER_GEN_END-->
|
||||||
|
|
|
@ -57,6 +57,16 @@ options:
|
||||||
experimentalcli: false
|
experimentalcli: false
|
||||||
kubernetes: false
|
kubernetes: false
|
||||||
swarm: false
|
swarm: false
|
||||||
|
- option: quiet-pull
|
||||||
|
value_type: bool
|
||||||
|
default_value: "false"
|
||||||
|
description: Pull without printing progress information
|
||||||
|
deprecated: false
|
||||||
|
hidden: false
|
||||||
|
experimental: false
|
||||||
|
experimentalcli: false
|
||||||
|
kubernetes: false
|
||||||
|
swarm: false
|
||||||
- option: remove-orphans
|
- option: remove-orphans
|
||||||
value_type: bool
|
value_type: bool
|
||||||
default_value: "false"
|
default_value: "false"
|
||||||
|
|
|
@ -274,6 +274,18 @@ options:
|
||||||
experimentalcli: false
|
experimentalcli: false
|
||||||
kubernetes: false
|
kubernetes: false
|
||||||
swarm: false
|
swarm: false
|
||||||
|
- option: watch
|
||||||
|
shorthand: w
|
||||||
|
value_type: bool
|
||||||
|
default_value: "false"
|
||||||
|
description: |
|
||||||
|
Watch source code and rebuild/refresh containers when files are updated.
|
||||||
|
deprecated: false
|
||||||
|
hidden: false
|
||||||
|
experimental: false
|
||||||
|
experimentalcli: false
|
||||||
|
kubernetes: false
|
||||||
|
swarm: false
|
||||||
inherited_options:
|
inherited_options:
|
||||||
- option: dry-run
|
- option: dry-run
|
||||||
value_type: bool
|
value_type: bool
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# github.com/moby/moby v25.0.3-0.20240203133757-341a7978a541+incompatible
|
# github.com/moby/moby v25.0.3-0.20240203133757-341a7978a541+incompatible
|
||||||
# github.com/moby/buildkit v0.13.0-rc3.0.20240307092343-22d4212fed7e
|
# github.com/moby/buildkit v0.13.0
|
||||||
# github.com/docker/buildx v0.0.0-00010101000000-000000000000
|
# github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315
|
||||||
# github.com/docker/scout-cli v1.4.1
|
# github.com/docker/scout-cli v1.4.1
|
||||||
# github.com/docker/cli v26.0.0-rc1+incompatible
|
# github.com/docker/cli v26.0.0-rc1+incompatible
|
||||||
# github.com/docker/compose/v2 v2.0.0-00010101000000-000000000000
|
# github.com/docker/compose/v2 v2.24.7
|
||||||
|
|
5
go.mod
5
go.mod
|
@ -7,7 +7,7 @@ toolchain go1.21.1
|
||||||
require (
|
require (
|
||||||
github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 // indirect
|
github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 // indirect
|
||||||
github.com/docker/cli v26.0.0-rc1+incompatible // indirect
|
github.com/docker/cli v26.0.0-rc1+incompatible // indirect
|
||||||
github.com/docker/compose/v2 v2.0.0-00010101000000-000000000000 // indirect
|
github.com/docker/compose/v2 v2.24.7 // indirect
|
||||||
github.com/docker/scout-cli v1.4.1 // indirect
|
github.com/docker/scout-cli v1.4.1 // indirect
|
||||||
github.com/moby/buildkit v0.13.0 // indirect
|
github.com/moby/buildkit v0.13.0 // indirect
|
||||||
github.com/moby/moby v25.0.3-0.20240203133757-341a7978a541+incompatible // indirect
|
github.com/moby/moby v25.0.3-0.20240203133757-341a7978a541+incompatible // indirect
|
||||||
|
@ -16,9 +16,8 @@ require (
|
||||||
replace (
|
replace (
|
||||||
github.com/docker/buildx => github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2
|
github.com/docker/buildx => github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2
|
||||||
github.com/docker/cli => github.com/docker/cli v25.0.4-0.20240221083216-f67e569a8fb9+incompatible
|
github.com/docker/cli => github.com/docker/cli v25.0.4-0.20240221083216-f67e569a8fb9+incompatible
|
||||||
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.24.6
|
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.24.7
|
||||||
github.com/docker/scout-cli => github.com/docker/scout-cli v1.4.1
|
github.com/docker/scout-cli => github.com/docker/scout-cli v1.4.1
|
||||||
github.com/moby/buildkit => github.com/moby/buildkit v0.13.0-rc3.0.20240307092343-22d4212fed7e
|
github.com/moby/buildkit => github.com/moby/buildkit v0.13.0-rc3.0.20240307092343-22d4212fed7e
|
||||||
github.com/moby/moby => github.com/moby/moby v25.0.3-0.20240203133757-341a7978a541+incompatible
|
github.com/moby/moby => github.com/moby/moby v25.0.3-0.20240203133757-341a7978a541+incompatible
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
2
go.sum
2
go.sum
|
@ -112,6 +112,8 @@ github.com/docker/compose/v2 v2.24.5 h1:7K173fhy+ghA88C8ib5YNa+kAZCx0CBeGW7lHcdo
|
||||||
github.com/docker/compose/v2 v2.24.5/go.mod h1:gg+RsqCXYD/TOIJgya4N9mtj/UmFJGEls7y3h/kadVE=
|
github.com/docker/compose/v2 v2.24.5/go.mod h1:gg+RsqCXYD/TOIJgya4N9mtj/UmFJGEls7y3h/kadVE=
|
||||||
github.com/docker/compose/v2 v2.24.6 h1:V5fOXgga0hYy4wHsygCquO6/k++8q3WuckU7Qo1cnXk=
|
github.com/docker/compose/v2 v2.24.6 h1:V5fOXgga0hYy4wHsygCquO6/k++8q3WuckU7Qo1cnXk=
|
||||||
github.com/docker/compose/v2 v2.24.6/go.mod h1:ugV3/2KoKEeM98ZYF9vsYwnSExC4xLGxblAqXB6HUXQ=
|
github.com/docker/compose/v2 v2.24.6/go.mod h1:ugV3/2KoKEeM98ZYF9vsYwnSExC4xLGxblAqXB6HUXQ=
|
||||||
|
github.com/docker/compose/v2 v2.24.7 h1:1WSo4CVf18tnGJMC6V78jYsAxSDD61ry6L3JwVT+8EI=
|
||||||
|
github.com/docker/compose/v2 v2.24.7/go.mod h1:7U3QbXdRJfBylTgkdlrjOg8hWLZqM09mof9DVZ5Fh4E=
|
||||||
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
|
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
|
||||||
github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
||||||
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
|
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
|
||||||
|
|
Loading…
Reference in New Issue