summaryrefslogtreecommitdiff
path: root/integration/internal/requirement/requirement_windows.go
blob: 7abcaa2990f504e250302cd36c15231b705c59f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//go:build windows
// +build windows

package requirement // import "github.com/docker/docker/integration/internal/requirement"

func overlayFSSupported() bool {
	return false
}

// Overlay2Supported returns true if the current system supports overlay2 as graphdriver
func Overlay2Supported(kernelVersion string) bool {
	return false
}