mirror of
https://github.com/docker/cli.git
synced 2025-09-03 21:22:02 +03:00
This new collection of commands supports initializing a local engine using containerd, updating that engine, and activating the EE product Signed-off-by: Daniel Hiltgen <daniel.hiltgen@docker.com>
13 lines
165 B
Go
13 lines
165 B
Go
// +build windows
|
|
|
|
package containerized
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
var (
|
|
// sigTERM all signals are ignored by containerd kill windows
|
|
sigTERM = syscall.Signal(0)
|
|
)
|