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.
2 parents 9066491 + 815ce4e commit dbce512Copy full SHA for dbce512
specs-go/config.go
@@ -59,9 +59,9 @@ type Process struct {
59
// main process.
60
type User struct {
61
// UID is the user id. (this field is platform dependent)
62
- UID uint32 `json:"uid,omitempty" platform:"linux"`
+ UID uint32 `json:"uid" platform:"linux"`
63
// GID is the group id. (this field is platform dependent)
64
- GID uint32 `json:"gid,omitempty" platform:"linux"`
+ GID uint32 `json:"gid" platform:"linux"`
65
// AdditionalGids are additional group ids set for the container's process. (this field is platform dependent)
66
AdditionalGids []uint32 `json:"additionalGids,omitempty" platform:"linux"`
67
}
0 commit comments