diff options
Diffstat (limited to 'libpod/options.go')
-rw-r--r-- | libpod/options.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libpod/options.go b/libpod/options.go index f82cb20c4..28962b4b5 100644 --- a/libpod/options.go +++ b/libpod/options.go @@ -268,6 +268,18 @@ func WithShmSize(size int64) CtrCreateOption { } } +// WithPrivileged sets the privileged flag in the container runtime +func WithPrivileged(privileged bool) CtrCreateOption { + return func(ctr *Container) error { + if ctr.valid { + return ErrCtrFinalized + } + + ctr.config.Privileged = privileged + return nil + } +} + // WithSELinuxLabels sets the mount label for SELinux func WithSELinuxLabels(processLabel, mountLabel string) CtrCreateOption { return func(ctr *Container) error { |