Merge pull request #150 from overleaf/em-docker-compose-healthchecks

Upgrade build-scripts to 3.4.0
This commit is contained in:
Eric Mc Sween 2020-11-26 11:05:49 -05:00 committed by GitHub
commit 408db87d77
3 changed files with 19 additions and 1 deletions

View file

@ -5,4 +5,4 @@ document-updater
--env-pass-through=
--node-version=10.22.1
--public-repo=True
--script-version=3.3.4
--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}
@ -43,6 +44,14 @@ services:
user: root
redis:
image: redis
healthcheck:
test: ping="$$(redis-cli ping)" && [ "$$ping" = 'PONG' ]
interval: 1s
retries: 20
mongo:
image: mongo:4.0
healthcheck:
test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'"
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}
@ -41,7 +42,15 @@ services:
redis:
image: redis
healthcheck:
test: ping=$$(redis-cli ping) && [ "$$ping" = 'PONG' ]
interval: 1s
retries: 20
mongo:
image: mongo:4.0
healthcheck:
test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'"
interval: 1s
retries: 20