github.com/devdivbcp/moby@v17.12.0-ce-rc1.0.20200726071732-2d4bfdc789ad+incompatible/pkg/system/init_unix.go (about) 1 // +build !windows 2 3 package system // import "github.com/docker/docker/pkg/system" 4 5 // InitLCOW does nothing since LCOW is a windows only feature 6 func InitLCOW(experimental bool) { 7 } 8 9 // ContainerdRuntimeSupported returns true if the use of ContainerD runtime is supported. 10 func ContainerdRuntimeSupported(_ bool, _ string) bool { 11 return true 12 }