requirement_windows.go 318 B

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