image_snapshot_windows.go 384 B

12345678910111213141516
  1. package containerd
  2. import (
  3. "context"
  4. "github.com/containerd/containerd/mount"
  5. "github.com/containerd/containerd/snapshots"
  6. )
  7. func (i *ImageService) remapSnapshot(ctx context.Context, snapshotter snapshots.Snapshotter, id string, parentSnapshot string) error {
  8. return nil
  9. }
  10. func (i *ImageService) unremapRootFS(ctx context.Context, mounts []mount.Mount) error {
  11. return nil
  12. }