docker-compose.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # This file was auto-generated, do not edit it directly.
  2. # Instead run bin/update_build_scripts from
  3. # https://github.com/sharelatex/sharelatex-dev-environment
  4. version: '2.3'
  5. services:
  6. test_unit:
  7. image: node:12.22.7
  8. volumes:
  9. - .:/app
  10. working_dir: /app
  11. environment:
  12. MOCHA_GREP: ${MOCHA_GREP}
  13. NODE_ENV: test
  14. NODE_OPTIONS: '--unhandled-rejections=strict'
  15. command: npm run --silent test:unit
  16. user: node
  17. test_acceptance:
  18. image: node:12.22.7
  19. volumes:
  20. - .:/app
  21. working_dir: /app
  22. environment:
  23. ELASTIC_SEARCH_DSN: es:9200
  24. REDIS_HOST: redis
  25. QUEUES_REDIS_HOST: redis
  26. MONGO_HOST: mongo
  27. POSTGRES_HOST: postgres
  28. MOCHA_GREP: ${MOCHA_GREP}
  29. LOG_LEVEL: ERROR
  30. NODE_ENV: test
  31. NODE_OPTIONS: '--unhandled-rejections=strict'
  32. user: node
  33. depends_on:
  34. mongo:
  35. condition: service_healthy
  36. command: npm run --silent test:acceptance
  37. mongo:
  38. image: mongo:4.2.15
  39. healthcheck:
  40. test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'"
  41. interval: 1s
  42. retries: 20