overleaf/services/chat/docker-compose.yml

48 lines
1.2 KiB
YAML
Raw Normal View History

# This file was auto-generated, do not edit it directly.
# Instead run bin/update_build_scripts from
# https://github.com/sharelatex/sharelatex-dev-environment
version: "2.3"
services:
test_unit:
image: node:14.18.3
volumes:
- .:/overleaf/services/chat
working_dir: /overleaf/services/chat
2018-05-22 12:25:17 -04:00
environment:
MOCHA_GREP: ${MOCHA_GREP}
NODE_ENV: test
NODE_OPTIONS: "--unhandled-rejections=strict"
2020-08-10 12:01:11 -04:00
command: npm run --silent test:unit
2018-05-22 12:25:17 -04:00
user: node
test_acceptance:
image: node:14.18.3
volumes:
- .:/overleaf/services/chat
working_dir: /overleaf/services/chat
environment:
2018-06-12 05:02:06 -04:00
ELASTIC_SEARCH_DSN: es:9200
REDIS_HOST: redis
QUEUES_REDIS_HOST: redis
MONGO_HOST: mongo
2018-05-22 12:25:17 -04:00
POSTGRES_HOST: postgres
MOCHA_GREP: ${MOCHA_GREP}
LOG_LEVEL: ERROR
NODE_ENV: test
NODE_OPTIONS: "--unhandled-rejections=strict"
2018-05-22 12:25:17 -04:00
user: node
depends_on:
mongo:
condition: service_healthy
2020-08-10 12:01:11 -04:00
command: npm run --silent test:acceptance
2018-06-12 05:02:06 -04:00
mongo:
image: mongo:4.2.15
healthcheck:
test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'"
interval: 1s
retries: 20