Merge pull request #12175 from TheRealHaoLiu/change-ee-container-volume-selinux-label

change SELinux label for EE volume mount
This commit is contained in:
Shane McDonald 2022-05-11 16:00:02 -04:00 committed by GitHub
commit 9537d148d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1451,8 +1451,8 @@ class RunProjectUpdate(BaseTask):
params.setdefault('container_volume_mounts', [])
params['container_volume_mounts'].extend(
[
f"{project_path}:{project_path}:Z",
f"{cache_path}:{cache_path}:Z",
f"{project_path}:{project_path}:z",
f"{cache_path}:{cache_path}:z",
]
)
return params