github.com/tonistiigi/docker@v0.10.1-0.20240229224939-974013b0dc6a/daemon/graphdriver/driver_windows.go (about) 1 package graphdriver // import "github.com/docker/docker/daemon/graphdriver" 2 3 // List of drivers that should be used in order 4 var priority = "windowsfilter" 5 6 // GetFSMagic returns the filesystem id given the path. 7 func GetFSMagic(rootpath string) (FsMagic, error) { 8 // Note it is OK to return FsMagicUnsupported on Windows. 9 return FsMagicUnsupported, nil 10 }