# 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.10

version: "2"

services:
  test_unit:
    build: .
    volumes:
      - .:/app
    working_dir: /app
    environment:
      MOCHA_GREP: ${MOCHA_GREP}
    command: npm run test:unit
    user: node

  test_acceptance:
    build: .
    volumes:
      - .:/app
    working_dir: /app
    environment:
      ELASTIC_SEARCH_DSN: es:9200
      REDIS_HOST: redis
      MONGO_HOST: mongo
      POSTGRES_HOST: postgres
      MOCHA_GREP: ${MOCHA_GREP}
    user: node
    depends_on:
      - mongo
      - redis
    command: npm run test:acceptance

  redis:
    image: redis

  mongo:
    image: mongo:3.4