Skip to content

Commit 223acbc

Browse files
committed
Skip AdditionalGID's for LCOW oci spec
Signed-off-by: Justin Terry (VM) <[email protected]>
1 parent de4bb2d commit 223acbc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

oci/spec_opts.go

+4
Original file line numberDiff line numberDiff line change
@@ -654,6 +654,10 @@ func WithUsername(username string) SpecOpts {
654654
// The passed in user can be either a uid or a username.
655655
func WithAdditionalGIDs(userstr string) SpecOpts {
656656
return func(ctx context.Context, client Client, c *containers.Container, s *Spec) (err error) {
657+
// For LCOW additional GID's not supported
658+
if s.Windows != nil {
659+
return nil
660+
}
657661
setProcess(s)
658662
setAdditionalGids := func(root string) error {
659663
var username string

0 commit comments

Comments
 (0)