docker-compose.locust.yml 359 B

123456789101112131415161718
  1. version: "3.7"
  2. services:
  3. locust:
  4. build: .
  5. command: locust --host http://web:8000
  6. volumes:
  7. - .:/code
  8. ports:
  9. - "8089:8089"
  10. environment:
  11. DJANGO_SETTINGS_MODULE: glitchtip.settings
  12. SECRET_KEY: nope
  13. #IS_LOAD_TEST: "true"
  14. deploy:
  15. resources:
  16. limits:
  17. cpus: "5.0"
  18. memory: 8000M