mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Upgrade build-scripts to 3.4.0
This version fixes docker-compose health checks for dependent services. See https://github.com/overleaf/dev-environment/pull/409 for details.
This commit is contained in:
parent
8d8adba38c
commit
e3c1854eb4
4 changed files with 12 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
<!-- Please review https://github.com/overleaf/write_latex/blob/master/.github/CONTRIBUTING.md for guidance on what is expected in each section. -->
|
<!-- Please review https://github.com/overleaf/developer-manual/blob/master/code/pr-guidance.md for guidance on what is expected in each section. -->
|
||||||
|
|
||||||
### Description
|
### Description
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,4 @@ chat
|
||||||
--env-pass-through=
|
--env-pass-through=
|
||||||
--node-version=10.22.1
|
--node-version=10.22.1
|
||||||
--public-repo=False
|
--public-repo=False
|
||||||
--script-version=3.3.4
|
--script-version=3.4.0
|
||||||
|
|
|
@ -20,6 +20,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
ELASTIC_SEARCH_DSN: es:9200
|
ELASTIC_SEARCH_DSN: es:9200
|
||||||
REDIS_HOST: redis
|
REDIS_HOST: redis
|
||||||
|
QUEUES_REDIS_HOST: redis
|
||||||
MONGO_HOST: mongo
|
MONGO_HOST: mongo
|
||||||
POSTGRES_HOST: postgres
|
POSTGRES_HOST: postgres
|
||||||
MOCHA_GREP: ${MOCHA_GREP}
|
MOCHA_GREP: ${MOCHA_GREP}
|
||||||
|
@ -41,3 +42,7 @@ services:
|
||||||
user: root
|
user: root
|
||||||
mongo:
|
mongo:
|
||||||
image: mongo:4.0
|
image: mongo:4.0
|
||||||
|
healthcheck:
|
||||||
|
test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'"
|
||||||
|
interval: 1s
|
||||||
|
retries: 20
|
||||||
|
|
|
@ -25,6 +25,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
ELASTIC_SEARCH_DSN: es:9200
|
ELASTIC_SEARCH_DSN: es:9200
|
||||||
REDIS_HOST: redis
|
REDIS_HOST: redis
|
||||||
|
QUEUES_REDIS_HOST: redis
|
||||||
MONGO_HOST: mongo
|
MONGO_HOST: mongo
|
||||||
POSTGRES_HOST: postgres
|
POSTGRES_HOST: postgres
|
||||||
MOCHA_GREP: ${MOCHA_GREP}
|
MOCHA_GREP: ${MOCHA_GREP}
|
||||||
|
@ -39,4 +40,8 @@ services:
|
||||||
|
|
||||||
mongo:
|
mongo:
|
||||||
image: mongo:4.0
|
image: mongo:4.0
|
||||||
|
healthcheck:
|
||||||
|
test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'"
|
||||||
|
interval: 1s
|
||||||
|
retries: 20
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue