Merge pull request #18076 from nalind/read-idmaps

libpod.storageService.CreateContainerStorage(): retrieve ID maps
This commit is contained in:
OpenShift Merge Robot 2023-04-06 05:59:59 -04:00 committed by GitHub
commit 4880f6379f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -164,8 +164,8 @@ func (r *storageService) CreateContainerStorage(ctx context.Context, systemConte
logrus.Debugf("Container %q has run directory %q", container.ID, containerRunDir)
return ContainerInfo{
UIDMap: options.UIDMap,
GIDMap: options.GIDMap,
UIDMap: container.UIDMap,
GIDMap: container.GIDMap,
Dir: containerDir,
RunDir: containerRunDir,
Config: imageConfig,