mirror of
https://github.com/docker/docs.git
synced 2026-04-01 08:48:56 +07:00
<!--Delete sections as needed --> ## Description Added release notes for Compose `v2.29.7` and `v2.30.0` releases ## Related issues or tickets https://docker.atlassian.net/browse/COMP-813 <!-- Related issues, pull requests, or Jira tickets --> ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [x] Editorial review - [ ] Product review Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
22 lines
797 B
Modula-2
22 lines
797 B
Modula-2
module github.com/docker/docs
|
|
|
|
go 1.23.1
|
|
|
|
require (
|
|
github.com/docker/buildx v0.17.1 // indirect
|
|
github.com/docker/cli v27.3.2-0.20241008150905-cb3048fbebb1+incompatible // indirect
|
|
github.com/docker/compose/v2 v2.30.0 // indirect
|
|
github.com/docker/scout-cli v1.13.0 // indirect
|
|
github.com/moby/buildkit v0.16.0 // indirect
|
|
github.com/moby/moby v27.3.1+incompatible // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/docker/buildx => github.com/docker/buildx v0.17.1
|
|
github.com/docker/cli => github.com/docker/cli v27.3.1+incompatible
|
|
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.30.0
|
|
github.com/docker/scout-cli => github.com/docker/scout-cli v1.13.0
|
|
github.com/moby/buildkit => github.com/moby/buildkit v0.16.0
|
|
github.com/moby/moby => github.com/moby/moby v27.3.1+incompatible
|
|
)
|