init_unix.go 346 B

123456789101112
  1. // +build !windows
  2. package system // import "github.com/docker/docker/pkg/system"
  3. // InitLCOW does nothing since LCOW is a windows only feature
  4. func InitLCOW(experimental bool) {
  5. }
  6. // ContainerdRuntimeSupported returns true if the use of ContainerD runtime is supported.
  7. func ContainerdRuntimeSupported(_ bool, _ string) bool {
  8. return true
  9. }