driver_unsupported.go 343 B

1234567891011
  1. //go:build !linux && !windows && !freebsd
  2. package graphdriver // import "github.com/docker/docker/daemon/graphdriver"
  3. // List of drivers that should be used in an order
  4. var priority = "unsupported"
  5. // GetFSMagic returns the filesystem id given the path.
  6. func GetFSMagic(rootpath string) (FsMagic, error) {
  7. return FsMagicUnsupported, nil
  8. }