We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17e5773 commit 0010afcCopy full SHA for 0010afc
1 file changed
src/runner.rs
@@ -80,6 +80,11 @@ impl AttachRequestBuilder {
80
self
81
}
82
83
+ pub fn set_supplemental_gids(mut self, gids: Vec<gid_t>) -> AttachRequestBuilder {
84
+ self.config.exec.supplemental_gids = gids.into();
85
+ self
86
+ }
87
+
88
pub fn set_no_new_privs(mut self, no_new_privs: bool) -> AttachRequestBuilder {
89
self.config.exec.no_new_privs = no_new_privs;
90
0 commit comments