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
21 lines (18 loc) · 786 Bytes
/
go.mod
File metadata and controls
21 lines (18 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/docker/docs
go 1.24.0
require (
github.com/docker/buildx v0.24.0 // indirect
github.com/docker/cli v28.1.1+incompatible // indirect
github.com/docker/compose/v2 v2.36.2 // indirect
github.com/docker/scout-cli v1.15.0 // indirect
github.com/moby/buildkit v0.22.0 // indirect
github.com/moby/moby v28.1.0-rc.2+incompatible // indirect
)
replace (
github.com/docker/buildx => github.com/docker/buildx v0.24.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.36.2
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
github.com/moby/buildkit => github.com/moby/buildkit v0.22.0-rc1
github.com/moby/moby => github.com/moby/moby v28.1.0-rc.2+incompatible
)