Update with build scripts version 1.0.0

This commit is contained in:
James Allen
2018-01-29 12:07:35 +00:00
parent a59dc9e149
commit bd581d069b
7 changed files with 156 additions and 20 deletions
+33
View File
@@ -0,0 +1,33 @@
# 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:4.2.1
volumes:
- .:/app
working_dir: /app
entrypoint: npm run test:unit
test_acceptance:
image: node:4.2.1
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