Files
moby/daemon/snapshotter/mount_windows.go
Derek McGowan 0aa8fe0bf9 Update to containerd v2.0.2, buildkit v0.19.0-rc2
Update buildkit version to commit which uses 2.0

Signed-off-by: Derek McGowan <derek@mcg.dev>
2025-01-15 14:09:30 +01:00

10 lines
195 B
Go

package snapshotter
import "github.com/containerd/containerd/v2/core/mount"
func isMounted(string) bool { return false }
func unmount(target string) error {
return mount.Unmount(target, 0)
}