moby/daemon/containerd/image_snapshot_windows.go
Derek McGowan f74ca4ed36
Update commit id unmap to directly use active mounts
Signed-off-by: Derek McGowan <derek@mcg.dev>
2023-12-22 10:14:44 -08:00

22 lines
526 B
Go

package containerd
import (
"context"
"github.com/containerd/containerd/mount"
"github.com/containerd/containerd/snapshots"
)
const remapSuffix = "-remap"
func (i *ImageService) copyAndUnremapRootFS(ctx context.Context, dst, src []mount.Mount) error {
return nil
}
func (i *ImageService) remapSnapshot(ctx context.Context, snapshotter snapshots.Snapshotter, id string, parentSnapshot string) error {
return nil
}
func (i *ImageService) unremapRootFS(ctx context.Context, mounts []mount.Mount) error {
return nil
}