mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1285c6d125
Signed-off-by: Olli Janatuinen <olli.janatuinen@gmail.com>
18 lines
544 B
Go
18 lines
544 B
Go
package system // import "github.com/docker/docker/pkg/system"
|
|
|
|
var (
|
|
// containerdRuntimeSupported determines if containerd should be the runtime.
|
|
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
|
|
}
|