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