mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
<!--Delete sections as needed --> ## Description Release notes for Compose `v2.39.1` release ## Related issues or tickets N/A <!-- 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>
24 lines
1004 B
Modula-2
24 lines
1004 B
Modula-2
module github.com/docker/docs
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/docker/buildx v0.26.1 // indirect
|
|
github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible // indirect
|
|
github.com/docker/compose/v2 v2.39.1 // indirect
|
|
github.com/docker/model-cli v0.1.33-0.20250703103301-d4e4936a9eb2 // indirect
|
|
github.com/docker/scout-cli v1.18.1 // indirect
|
|
github.com/moby/buildkit v0.23.2 // indirect
|
|
github.com/moby/moby v28.3.2+incompatible // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/docker/buildx => github.com/docker/buildx v0.26.1
|
|
github.com/docker/cli => github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible
|
|
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.39.1
|
|
github.com/docker/model-cli => github.com/docker/model-cli v0.1.33-0.20250703103301-d4e4936a9eb2
|
|
github.com/docker/scout-cli => github.com/docker/scout-cli v1.18.1
|
|
github.com/moby/buildkit => github.com/moby/buildkit v0.23.2
|
|
github.com/moby/moby => github.com/moby/moby v28.3.2+incompatible
|
|
)
|