We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 231a7a3 + 0010afc commit ccccbc1Copy full SHA for ccccbc1
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