mirror of
https://github.com/overleaf/toolkit.git
synced 2025-04-19 23:38:06 +02:00
Include override file, if present
This commit is contained in:
parent
b0fe786136
commit
bc4f5e1614
1 changed files with 4 additions and 0 deletions
|
@ -30,6 +30,10 @@ function __main__() {
|
|||
compose_file_flags+=("-f ./config/docker-compose.mongo.yml")
|
||||
fi
|
||||
|
||||
# Include docker-compose.override.yml if it is present
|
||||
if [[ -f './config/docker-compose.override.yml' ]]; then
|
||||
compose_file_flags+=("-f ./config/docker-compose.override.yml")
|
||||
fi
|
||||
# Build up the flags to pass to docker-compose
|
||||
project_name_flag="-p ${RC_PROJECT_NAME:-overleaf}"
|
||||
args="$*"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue