secrets: only set CopyUIDGID when required (#10598)

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De loof 2023-05-23 19:34:24 +02:00 committed by GitHub
parent 544b579cb0
commit eafcd1b35e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ func (s *composeService) injectSecrets(ctx context.Context, project *types.Proje
}
err = s.apiClient().CopyToContainer(ctx, id, "/", &b, moby.CopyToContainerOptions{
CopyUIDGID: true,
CopyUIDGID: config.UID != "" || config.GID != "",
})
if err != nil {
return err