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 c83c65c commit 31485faCopy full SHA for 31485fa
config_linux.go
@@ -20,10 +20,10 @@ type Linux struct {
20
// User specifies linux specific user and group information for the container's
21
// main process.
22
type User struct {
23
- // Uid is the user id.
24
- Uid int32 `json:"uid"`
25
- // Gid is the group id.
26
- Gid int32 `json:"gid"`
+ // UID is the user id.
+ UID int32 `json:"uid"`
+ // GID is the group id.
+ GID int32 `json:"gid"`
27
// AdditionalGids are additional group ids set for the container's process.
28
AdditionalGids []int32 `json:"additionalGids"`
29
}
0 commit comments