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:
Eric Mc Sween 2020-11-23 10:56:33 -05:00
parent 18ab1fb1c0
commit 96126ecf34
3 changed files with 11 additions and 1 deletions

View file

@ -5,4 +5,4 @@ real-time
--env-pass-through=
--node-version=10.22.1
--public-repo=True
--script-version=3.3.5
--script-version=3.4.0

View file

@ -20,6 +20,7 @@ services:
environment:
ELASTIC_SEARCH_DSN: es:9200
REDIS_HOST: redis
QUEUES_REDIS_HOST: redis
MONGO_HOST: mongo
POSTGRES_HOST: postgres
MOCHA_GREP: ${MOCHA_GREP}
@ -41,4 +42,8 @@ services:
user: root
redis:
image: redis
healthcheck:
test: ping="$$(redis-cli ping)" && [ "$$ping" = 'PONG' ]
interval: 1s
retries: 20

View file

@ -25,6 +25,7 @@ services:
environment:
ELASTIC_SEARCH_DSN: es:9200
REDIS_HOST: redis
QUEUES_REDIS_HOST: redis
MONGO_HOST: mongo
POSTGRES_HOST: postgres
MOCHA_GREP: ${MOCHA_GREP}
@ -39,4 +40,8 @@ services:
redis:
image: redis
healthcheck:
test: ping=$$(redis-cli ping) && [ "$$ping" = 'PONG' ]
interval: 1s
retries: 20