mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
Update buildkit version to commit which uses 2.0 Signed-off-by: Derek McGowan <derek@mcg.dev>
10 lines
195 B
Go
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)
|
|
}
|