docker-compose.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.3
  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.3
  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. redis:
  37. condition: service_healthy
  38. command: npm run --silent test:acceptance
  39. redis:
  40. image: redis
  41. healthcheck:
  42. test: ping=$$(redis-cli ping) && [ "$$ping" = 'PONG' ]
  43. interval: 1s
  44. retries: 20
  45. mongo:
  46. image: mongo:4.0
  47. healthcheck:
  48. test: "mongo --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'"
  49. interval: 1s
  50. retries: 20