driver_windows.go 483 B

12345678910111213141516171819202122232425
  1. package graphdriver
  2. import (
  3. _ "github.com/docker/docker/daemon/graphdriver/vfs"
  4. // TODO Windows - Add references to real graph driver when PR'd
  5. )
  6. type DiffDiskDriver interface {
  7. Driver
  8. CopyDiff(id, sourceId string) error
  9. }
  10. var (
  11. // Slice of drivers that should be used in order
  12. priority = []string{
  13. "windows",
  14. "vfs",
  15. }
  16. )
  17. func GetFSMagic(rootpath string) (FsMagic, error) {
  18. // Note it is OK to return FsMagicUnsupported on Windows.
  19. return FsMagicUnsupported, nil
  20. }