dotcloud/docker

View on GitHub
pkg/system/init_windows.go

Summary

Maintainability
A
0 mins
Test Coverage
package system // import "github.com/docker/docker/pkg/system"

// containerdRuntimeSupported determines if containerd should be the runtime.
var containerdRuntimeSupported = false

// InitContainerdRuntime sets whether to use containerd for runtime on Windows.
func InitContainerdRuntime(cdPath string) {
    if len(cdPath) > 0 {
        containerdRuntimeSupported = true
    }
}

// ContainerdRuntimeSupported returns true if the use of containerd runtime is supported.
func ContainerdRuntimeSupported() bool {
    return containerdRuntimeSupported
}