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

34 lines
739 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
2018-05-24 14:03:57 -04:00
# Version: 1.1.3
version: "2"
services:
test_unit:
2018-05-24 14:03:57 -04:00
image: gcr.io/csh-gcdm-test/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
command: npm run test:unit:_run
test_acceptance:
build: .
2018-05-24 14:03:57 -04:00
image: gcr.io/csh-gcdm-test/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
extends:
file: docker-compose-config.yml
2018-03-06 11:03:26 -05:00
service: ci
environment:
REDIS_HOST: redis
MONGO_HOST: mongo
2018-05-24 14:03:57 -04:00
POSTGRES_HOST: postgres
depends_on:
- mongo
2018-05-24 14:03:57 -04:00
- redis
command: npm run test:acceptance:_run
redis:
image: redis
mongo:
image: mongo:3.4
2018-05-24 14:03:57 -04:00