github.com/jwhonce/docker@v0.6.7-0.20190327063223-da823cf3a5a3/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 }