mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Update buildkit version to commit which uses 2.0 Signed-off-by: Derek McGowan <derek@mcg.dev>
23 lines
542 B
Go
23 lines
542 B
Go
package containerd
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containerd/containerd/v2/core/mount"
|
|
"github.com/containerd/containerd/v2/core/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
|
|
}
|