Signed-off-by: Stefan J. Wernli <swernli@microsoft.com> Windows: add support for images stored in alternate location. Signed-off-by: Stefan J. Wernli <swernli@microsoft.com> Upstream-commit: dfbb5520e3b35030f3eef38d5a2d86ad20ea0a2f Component: engine
16 lines
295 B
Go
16 lines
295 B
Go
package graphdriver
|
|
|
|
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
|
|
}
|