github.com/ncdc/docker@v0.10.1-0.20160129113957-6c6729ef5b74/daemon/graphdriver/driver_windows.go (about) 1 package graphdriver 2 3 var ( 4 // Slice of drivers that should be used in order 5 priority = []string{ 6 "windowsfilter", 7 "windowsdiff", 8 "vfs", 9 } 10 ) 11 12 // GetFSMagic returns the filesystem id given the path. 13 func GetFSMagic(rootpath string) (FsMagic, error) { 14 // Note it is OK to return FsMagicUnsupported on Windows. 15 return FsMagicUnsupported, nil 16 }