We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96bcd04 commit 309da60Copy full SHA for 309da60
config_darwin.go
@@ -0,0 +1,14 @@
1
+// +build darwin
2
+
3
+package specs
4
5
+// User specifies specific user and group information for the container's
6
+// main process.
7
+type User struct {
8
+ // UID is the user id.
9
+ UID int32 `json:"uid"`
10
+ // GID is the group id.
11
+ GID int32 `json:"gid"`
12
+ // AdditionalGids are additional group ids set for the container's process.
13
+ AdditionalGids []int32 `json:"additionalGids"`
14
+}
0 commit comments