diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-14 07:50:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-14 07:50:15 -0400 |
commit | 219f1162407b8f4c2c05aa07166b999d64ead113 (patch) | |
tree | 0a25a2cf34698a2e3e7651a1bcda6cbcb0b08b44 /libpod/options.go | |
parent | 0144cabc41b82e4c1b59f681ca845c01ae1735de (diff) | |
parent | e8968c867f7af21f9e5eec661f7e057a74127511 (diff) | |
download | podman-219f1162407b8f4c2c05aa07166b999d64ead113.tar.gz podman-219f1162407b8f4c2c05aa07166b999d64ead113.tar.bz2 podman-219f1162407b8f4c2c05aa07166b999d64ead113.zip |
Merge pull request #13221 from LStandman/main
Add support for --chrootdirs
Diffstat (limited to 'libpod/options.go')
-rw-r--r-- | libpod/options.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libpod/options.go b/libpod/options.go index 1ee4e7322..2e5454393 100644 --- a/libpod/options.go +++ b/libpod/options.go @@ -2036,3 +2036,18 @@ func WithVolatile() CtrCreateOption { return nil } } + +// WithChrootDirs is an additional set of directories that need to be +// treated as root directories. Standard bind mounts will be mounted +// into paths relative to these directories. +func WithChrootDirs(dirs []string) CtrCreateOption { + return func(ctr *Container) error { + if ctr.valid { + return define.ErrCtrFinalized + } + + ctr.config.ChrootDirs = dirs + + return nil + } +} |