diff --git a/services/spelling/.github/PULL_REQUEST_TEMPLATE.md b/services/spelling/.github/PULL_REQUEST_TEMPLATE.md index eccd3ef6e9..0d4ce514d8 100644 --- a/services/spelling/.github/PULL_REQUEST_TEMPLATE.md +++ b/services/spelling/.github/PULL_REQUEST_TEMPLATE.md @@ -1,5 +1,5 @@ - + ### Description diff --git a/services/spelling/buildscript.txt b/services/spelling/buildscript.txt index fb25857eab..79d3ce8ab3 100644 --- a/services/spelling/buildscript.txt +++ b/services/spelling/buildscript.txt @@ -6,4 +6,4 @@ spelling --env-pass-through= --node-version=10.22.1 --public-repo=False ---script-version=3.3.4 +--script-version=3.4.0 diff --git a/services/spelling/docker-compose.ci.yml b/services/spelling/docker-compose.ci.yml index 07b933fad2..47fcec0c68 100644 --- a/services/spelling/docker-compose.ci.yml +++ b/services/spelling/docker-compose.ci.yml @@ -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,3 +42,7 @@ services: user: root mongo: image: mongo:4.0 + healthcheck: + test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'" + interval: 1s + retries: 20 diff --git a/services/spelling/docker-compose.yml b/services/spelling/docker-compose.yml index d846dd0726..b7ab39847e 100644 --- a/services/spelling/docker-compose.yml +++ b/services/spelling/docker-compose.yml @@ -29,6 +29,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,4 +44,8 @@ services: mongo: image: mongo:4.0 + healthcheck: + test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'" + interval: 1s + retries: 20