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