fix(deps): update module github.com/docker/docker to v28.1.0+incompatible

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2025-04-17 19:48:18 +00:00
committed by GitHub
parent 51c4df1316
commit 05e7eeaff4
70 changed files with 1562 additions and 741 deletions

9
vendor/github.com/moby/go-archive/dev_freebsd.go generated vendored Normal file
View File

@@ -0,0 +1,9 @@
//go:build freebsd
package archive
import "golang.org/x/sys/unix"
func mknod(path string, mode uint32, dev uint64) error {
return unix.Mknod(path, mode, dev)
}