forked from docker/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (19 loc) · 802 Bytes
/
go.mod
File metadata and controls
23 lines (19 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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+incompatible // indirect
github.com/docker/compose/v2 v2.35.1 // 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.1
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
)