mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
<!--Delete sections as needed --> ## Description <!-- Tell us what you did and why --> ## Related issues or tickets <!-- Related issues, pull requests, or Jira tickets --> ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com> Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
24 lines
807 B
Modula-2
24 lines
807 B
Modula-2
module github.com/docker/docs
|
|
|
|
go 1.23.8
|
|
|
|
toolchain go1.24.1
|
|
|
|
require (
|
|
github.com/docker/buildx v0.23.0 // indirect
|
|
github.com/docker/cli v28.1.0-rc.2+incompatible // indirect
|
|
github.com/docker/compose/v2 v2.35.0 // indirect
|
|
github.com/docker/scout-cli v1.15.0 // indirect
|
|
github.com/moby/buildkit v0.21.0 // indirect
|
|
github.com/moby/moby v28.1.0-rc.2+incompatible // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/docker/buildx => github.com/docker/buildx v0.23.0
|
|
github.com/docker/cli => github.com/docker/cli v28.1.0-rc.2+incompatible
|
|
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.35.0
|
|
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
|
|
github.com/moby/buildkit => github.com/moby/buildkit v0.20.0
|
|
github.com/moby/moby => github.com/moby/moby v28.1.0-rc.2+incompatible
|
|
)
|