github.com/moby/docker@v26.1.3+incompatible/daemon/containerd/image_snapshot_windows.go (about)

     1  package containerd
     2  
     3  import (
     4  	"context"
     5  
     6  	"github.com/containerd/containerd/mount"
     7  	"github.com/containerd/containerd/snapshots"
     8  )
     9  
    10  const remapSuffix = "-remap"
    11  
    12  func (i *ImageService) copyAndUnremapRootFS(ctx context.Context, dst, src []mount.Mount) error {
    13  	return nil
    14  }
    15  
    16  func (i *ImageService) remapSnapshot(ctx context.Context, snapshotter snapshots.Snapshotter, id string, parentSnapshot string) error {
    17  	return nil
    18  }
    19  
    20  func (i *ImageService) unremapRootFS(ctx context.Context, mounts []mount.Mount) error {
    21  	return nil
    22  }