overleaf/services/chat/docker-compose.ci.yml
2018-12-10 22:17:48 -05:00

38 lines
753 B
YAML

# 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: 1.1.10
version: "2"
services:
test_unit:
image: node:6.14.1
volumes:
- .:/app
working_dir: /app
user: node
command: npm run test:unit:_run
test_acceptance:
image: node:6.14.1
volumes:
- .:/app
working_dir: /app
environment:
ELASTIC_SEARCH_DSN: es:9200
REDIS_HOST: redis
MONGO_HOST: mongo
POSTGRES_HOST: postgres
MOCHA_GREP: ${MOCHA_GREP}
depends_on:
- mongo
- redis
user: node
command: npm run test:acceptance:_run
redis:
image: redis
mongo:
image: mongo:3.4