docker-compose.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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:10.22.1
  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:10.22.1
  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. redis:
  35. condition: service_healthy
  36. command: npm run --silent test:acceptance
  37. redis:
  38. image: redis
  39. healthcheck:
  40. test: ping=$$(redis-cli ping) && [ "$$ping" = 'PONG' ]
  41. interval: 1s
  42. retries: 20