2018-01-29 07:07:35 -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
|
|
|
|
# Version: 1.0.0
|
|
|
|
|
|
|
|
version: "2"
|
|
|
|
|
|
|
|
services:
|
|
|
|
test_unit:
|
2018-04-26 04:53:14 -04:00
|
|
|
image: node:6.14.1
|
2018-01-29 07:07:35 -05:00
|
|
|
volumes:
|
|
|
|
- .:/app
|
|
|
|
working_dir: /app
|
|
|
|
entrypoint: npm run test:unit
|
|
|
|
|
|
|
|
test_acceptance:
|
2018-04-26 04:53:14 -04:00
|
|
|
image: node:6.14.1
|
2018-01-29 07:07:35 -05:00
|
|
|
volumes:
|
|
|
|
- .:/app
|
|
|
|
environment:
|
|
|
|
REDIS_HOST: redis
|
|
|
|
MONGO_HOST: mongo
|
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- mongo
|
|
|
|
working_dir: /app
|
|
|
|
entrypoint: npm run test:acceptance
|
|
|
|
|
|
|
|
redis:
|
|
|
|
image: redis
|
|
|
|
|
|
|
|
mongo:
|
|
|
|
image: mongo:3.4
|