2018-05-18 09:27:46 -04: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.1.1
|
|
|
|
|
|
|
|
version: "2"
|
|
|
|
|
|
|
|
services:
|
|
|
|
test_unit:
|
2018-05-18 12:18:39 -04:00
|
|
|
image: gcr.io/csh-gcdm-test/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
2018-05-18 09:27:46 -04:00
|
|
|
user: node
|
|
|
|
command: npm run test:unit:_run
|
|
|
|
|
|
|
|
test_acceptance:
|
|
|
|
build: .
|
2018-05-18 12:18:39 -04:00
|
|
|
image: gcr.io/csh-gcdm-test/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
2018-05-18 09:27:46 -04:00
|
|
|
environment:
|
|
|
|
REDIS_HOST: redis
|
|
|
|
MONGO_HOST: mongo
|
|
|
|
POSTGRES_HOST: postgres
|
|
|
|
depends_on:
|
|
|
|
- mongo
|
|
|
|
- redis
|
|
|
|
user: node
|
|
|
|
command: npm run test:acceptance:_run
|
2018-05-18 12:08:18 -04:00
|
|
|
|
2018-05-18 09:27:46 -04:00
|
|
|
redis:
|
|
|
|
image: redis
|
|
|
|
|
|
|
|
mongo:
|
|
|
|
image: mongo:3.4
|
|
|
|
|