Guest User

Untitled

a guest
Nov 16th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. redis:
  2. image: redis
  3.  
  4. postgres:
  5. image: postgres
  6. environment:
  7. - POSTGRES_PASSWORD=sentry
  8. - POSTGRES_USER=sentry
  9.  
  10. sentry:
  11. image: sentry
  12. environment:
  13. - SENTRY_SECRET_KEY=some_secret_key_to_be_generated
  14. links:
  15. - redis
  16. - postgres
  17. ports:
  18. - "8081:9000"
  19.  
  20. sentry-cron:
  21. image: sentry
  22. environment:
  23. - SENTRY_SECRET_KEY=some_secret_key_to_be_generated
  24. links:
  25. - redis
  26. - postgres
  27. command: sentry run cron
  28.  
  29. sentry-worker:
  30. image: sentry
  31. environment:
  32. - SENTRY_SECRET_KEY=some_secret_key_to_be_generated
  33. links:
  34. - redis
  35. - postgres
  36. command: sentry run worker
Add Comment
Please, Sign In to add comment