зеркало из https://github.com/microsoft/docker.git
12 строки
377 B
Go
12 строки
377 B
Go
package main
|
|
|
|
// sleepCommandForDaemonPlatform is a helper function that determines what
|
|
// the command is for a sleeping container based on the daemon platform.
|
|
// The Windows busybox image does not have a `top` command.
|
|
func sleepCommandForDaemonPlatform() []string {
|
|
if testEnv.DaemonPlatform() == "windows" {
|
|
return []string{"sleep", "240"}
|
|
}
|
|
return []string{"top"}
|
|
}
|