requirement_windows.go 336 B

12345678910111213
  1. //go:build windows
  2. // +build windows
  3. package requirement // import "github.com/docker/docker/integration/internal/requirement"
  4. func overlayFSSupported() bool {
  5. return false
  6. }
  7. // Overlay2Supported returns true if the current system supports overlay2 as graphdriver
  8. func Overlay2Supported(kernelVersion string) bool {
  9. return false
  10. }