mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
Follow-up of #19715, where the replace directive wasn't updated, preventing updated files in upstream from being vendored. Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
22 lines
702 B
Modula-2
22 lines
702 B
Modula-2
module github.com/docker/docs
|
|
|
|
go 1.21
|
|
|
|
toolchain go1.21.1
|
|
|
|
require (
|
|
github.com/docker/buildx v0.13.1 // indirect
|
|
github.com/docker/cli v26.0.0+incompatible // indirect
|
|
github.com/docker/compose/v2 v2.26.1 // indirect
|
|
github.com/moby/buildkit v0.13.0 // indirect
|
|
github.com/moby/moby v26.0.0+incompatible // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/docker/buildx => github.com/docker/buildx v0.13.1
|
|
github.com/docker/cli => github.com/docker/cli v26.0.0+incompatible
|
|
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.26.1
|
|
github.com/moby/buildkit => github.com/moby/buildkit v0.13.0-rc3.0.20240308080452-a38011b9f57d
|
|
github.com/moby/moby => github.com/moby/moby v26.0.0+incompatible
|
|
)
|