mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
52f4d09ffb
Signed-off-by: John Howard <jhoward@microsoft.com>
29 lines
722 B
Go
29 lines
722 B
Go
package graphdriver
|
|
|
|
import (
|
|
"github.com/docker/docker/pkg/archive"
|
|
"github.com/microsoft/hcsshim"
|
|
)
|
|
|
|
type WindowsGraphDriver interface {
|
|
Driver
|
|
CopyDiff(id, sourceId string, parentLayerPaths []string) error
|
|
LayerIdsToPaths(ids []string) []string
|
|
Info() hcsshim.DriverInfo
|
|
Export(id string, parentLayerPaths []string) (archive.Archive, error)
|
|
Import(id string, layerData archive.ArchiveReader, parentLayerPaths []string) (int64, error)
|
|
}
|
|
|
|
var (
|
|
// Slice of drivers that should be used in order
|
|
priority = []string{
|
|
"windowsfilter",
|
|
"windowsdiff",
|
|
"vfs",
|
|
}
|
|
)
|
|
|
|
func GetFSMagic(rootpath string) (FsMagic, error) {
|
|
// Note it is OK to return FsMagicUnsupported on Windows.
|
|
return FsMagicUnsupported, nil
|
|
}
|