mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5cf3c904cb
needs hacked pacth in docker runner wip most tests pass
27 lines
628 B
YAML
27 lines
628 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.1
|
|
|
|
version: "2"
|
|
|
|
services:
|
|
test_unit:
|
|
image: quay.io/sharelatex/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
entrypoint: npm run test:unit:_run
|
|
|
|
test_acceptance:
|
|
image: quay.io/sharelatex/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
environment:
|
|
REDIS_HOST: redis
|
|
MONGO_HOST: mongo
|
|
depends_on:
|
|
- redis
|
|
- mongo
|
|
entrypoint: npm run test:acceptance:_run
|
|
|
|
redis:
|
|
image: redis
|
|
|
|
mongo:
|
|
image: mongo:3.4
|