driver_windows.go 358 B

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