mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a2aaf4cc83
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
16 lines
503 B
Go
16 lines
503 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package cache
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containerd/containerd/mount"
|
|
ocispecs "github.com/opencontainers/image-spec/specs-go/v1"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (sr *immutableRef) tryComputeOverlayBlob(ctx context.Context, lower, upper []mount.Mount, mediaType string, ref string, compressorFunc compressor) (_ ocispecs.Descriptor, ok bool, err error) {
|
|
return ocispecs.Descriptor{}, true, errors.Errorf("overlayfs-based diff computing is unsupported")
|
|
}
|