Skip to content

Commit 4a74731

Browse files
author
Ian Campbell
committed
oci: Update docs for oci.WithUserID
The behaviour was changed in 99df1a9 ("Set gid 0 when no group is specified"), part of #2529. Take the opportunity to tighten up the grammar a bit too. Signed-off-by: Ian Campbell <[email protected]>
1 parent 1ba4aa0 commit 4a74731

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

oci/spec_opts_unix.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,8 @@ func WithUIDGID(uid, gid uint32) SpecOpts {
357357

358358
// WithUserID sets the correct UID and GID for the container based
359359
// on the image's /etc/passwd contents. If /etc/passwd does not exist,
360-
// or uid is not found in /etc/passwd, it sets gid to be the same with
361-
// uid, and not returns error.
360+
// or uid is not found in /etc/passwd, it sets the requested uid,
361+
// additionally sets the gid to 0, and does not return an error.
362362
func WithUserID(uid uint32) SpecOpts {
363363
return func(ctx context.Context, client Client, c *containers.Container, s *Spec) (err error) {
364364
setProcess(s)

0 commit comments

Comments
 (0)