overleaf/services/spelling/docker-compose.ci.yml

34 lines
730 B
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
2019-01-03 05:06:42 -05:00
# Version: 1.1.10
version: "2"
services:
test_unit:
2018-10-03 10:19:37 -04:00
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
user: node
command: npm run test:unit:_run
test_acceptance:
build: .
2018-10-03 10:19:37 -04:00
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
environment:
2018-10-03 10:19:37 -04:00
ELASTIC_SEARCH_DSN: es:9200
REDIS_HOST: redis
MONGO_HOST: mongo
POSTGRES_HOST: postgres
2018-10-03 10:19:37 -04:00
MOCHA_GREP: ${MOCHA_GREP}
depends_on:
- mongo
- redis
user: node
command: npm run test:acceptance:_run
redis:
image: redis
mongo:
image: mongo:3.4