driver_unsupported.go 384 B

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