mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
34 lines
620 B
YAML
34 lines
620 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.0.0
|
||
|
|
||
|
version: "2"
|
||
|
|
||
|
services:
|
||
|
test_unit:
|
||
|
image: node:6.9.5
|
||
|
volumes:
|
||
|
- .:/app
|
||
|
working_dir: /app
|
||
|
entrypoint: npm run test:unit
|
||
|
|
||
|
test_acceptance:
|
||
|
image: node:6.9.5
|
||
|
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
|