moby--moby/libcontainerd/supervisor/remote_daemon_options_linux.go

10 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
}
}