mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
dd2e19ebd5
Adds a supervisor package for starting and monitoring containerd. Separates grpc connection allowing access from daemon. Signed-off-by: Derek McGowan <derek@mcgstyle.net>
9 lines
271 B
Go
9 lines
271 B
Go
package supervisor // import "github.com/docker/docker/libcontainerd/supervisor"
|
|
|
|
// WithOOMScore defines the oom_score_adj to set for the containerd process.
|
|
func WithOOMScore(score int) DaemonOpt {
|
|
return func(r *remote) error {
|
|
r.OOMScore = score
|
|
return nil
|
|
}
|
|
}
|