14 lines
308 B
Go
14 lines
308 B
Go
// +build linux
|
|
|
|
package containerd
|
|
|
|
import specs "github.com/opencontainers/runtime-spec/specs-go"
|
|
|
|
// WithApparmor sets the provided apparmor profile to the spec
|
|
func WithApparmorProfile(profile string) SpecOpts {
|
|
return func(s *specs.Spec) error {
|
|
s.Process.ApparmorProfile = profile
|
|
return nil
|
|
}
|
|
}
|