mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
add option for apparmor profile
This commit is contained in:
@@ -270,6 +270,12 @@ const DockerRunner = {
|
||||
)
|
||||
}
|
||||
|
||||
if (Settings.clsi.docker.apparmor_profile != null) {
|
||||
options.HostConfig.SecurityOpt.push(
|
||||
`apparmor=${Settings.clsi.docker.apparmor_profile}`
|
||||
)
|
||||
}
|
||||
|
||||
if (Settings.clsi.docker.runtime) {
|
||||
options.HostConfig.Runtime = Settings.clsi.docker.runtime
|
||||
}
|
||||
|
||||
@@ -143,6 +143,15 @@ if (process.env.DOCKER_RUNNER) {
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
if (process.env.APPARMOR_PROFILE) {
|
||||
try {
|
||||
module.exports.clsi.docker.apparmor_profile = process.env.APPARMOR_PROFILE
|
||||
} catch (error) {
|
||||
console.error(error, 'could not apply apparmor profile setting')
|
||||
process.exit(1)
|
||||
}
|
||||
}
|
||||
|
||||
if (process.env.ALLOWED_IMAGES) {
|
||||
try {
|
||||
module.exports.clsi.docker.allowedImages =
|
||||
|
||||
Reference in New Issue
Block a user