add default settings to remove wordcount and synctex containers
This commit is contained in:
@@ -102,7 +102,15 @@ if (process.env.DOCKER_RUNNER) {
|
|||||||
const compileGroupConfig = JSON.parse(
|
const compileGroupConfig = JSON.parse(
|
||||||
process.env.COMPILE_GROUP_DOCKER_CONFIGS || '{}'
|
process.env.COMPILE_GROUP_DOCKER_CONFIGS || '{}'
|
||||||
)
|
)
|
||||||
module.exports.clsi.docker.compileGroupConfig = compileGroupConfig
|
// Automatically clean up wordcount and synctex containers
|
||||||
|
const defaultCompileGroupConfig = {
|
||||||
|
wordcount: { 'HostConfig.AutoRemove': true },
|
||||||
|
synctex: { 'HostConfig.AutoRemove': true }
|
||||||
|
}
|
||||||
|
module.exports.clsi.docker.compileGroupConfig = Object.assign(
|
||||||
|
defaultCompileGroupConfig,
|
||||||
|
compileGroupConfig
|
||||||
|
)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error, 'could not apply compile group docker configs')
|
console.error(error, 'could not apply compile group docker configs')
|
||||||
process.exit(1)
|
process.exit(1)
|
||||||
|
|||||||
Reference in New Issue
Block a user