overleaf/services/document-updater/docker-compose.ci.yml

39 lines
750 B
YAML
Raw Normal View History

2018-02-15 11:28:40 -05:00
# This file was auto-generated, do not edit it directly.
# Instead run bin/update_build_scripts from
# https://github.com/sharelatex/sharelatex-dev-environment
2018-07-23 10:32:33 -04:00
# Version: 1.1.9
2018-02-15 11:28:40 -05:00
version: "2"
services:
test_unit:
image: node:6.9.5
volumes:
- .:/app
working_dir: /app
2018-07-23 10:32:33 -04:00
user: node
command: npm run test:unit:_run
2018-02-15 11:28:40 -05:00
test_acceptance:
image: node:6.9.5
volumes:
- .:/app
working_dir: /app
environment:
2018-07-23 10:32:33 -04:00
ELASTIC_SEARCH_DSN: es:9200
2018-02-15 11:28:40 -05:00
REDIS_HOST: redis
MONGO_HOST: mongo
2018-07-23 10:32:33 -04:00
POSTGRES_HOST: postgres
MOCHA_GREP: ${MOCHA_GREP}
2018-02-15 11:28:40 -05:00
depends_on:
- mongo
2018-07-23 10:32:33 -04:00
- redis
user: node
command: npm run test:acceptance:_run
2018-02-15 11:28:40 -05:00
redis:
image: redis
mongo:
image: mongo:3.4