| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- # 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: "2.3"
- services:
- test_unit:
- image: node:10.23.1
- volumes:
- - .:/app
- working_dir: /app
- environment:
- MOCHA_GREP: ${MOCHA_GREP}
- NODE_ENV: test
- NODE_OPTIONS: "--unhandled-rejections=strict"
- command: npm run --silent test:unit
- user: node
- test_acceptance:
- image: node:10.23.1
- volumes:
- - .:/app
- working_dir: /app
- environment:
- ELASTIC_SEARCH_DSN: es:9200
- REDIS_HOST: redis
- QUEUES_REDIS_HOST: redis
- MONGO_HOST: mongo
- POSTGRES_HOST: postgres
- MOCHA_GREP: ${MOCHA_GREP}
- LOG_LEVEL: ERROR
- NODE_ENV: test
- NODE_OPTIONS: "--unhandled-rejections=strict"
- user: node
- depends_on:
- mongo:
- condition: service_healthy
- redis:
- condition: service_healthy
- command: npm run --silent test:acceptance
- redis:
- image: redis
- healthcheck:
- test: ping=$$(redis-cli ping) && [ "$$ping" = 'PONG' ]
- interval: 1s
- retries: 20
- mongo:
- image: mongo:4.0
- healthcheck:
- test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'"
- interval: 1s
- retries: 20
|