Advertisement
Guest User

Untitled

a guest
Apr 20th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. redis:
  2. image: redis
  3. sentry-celery-beat:
  4. environment:
  5. SENTRY_SECRET_KEY: 'thisisnotsosecret'
  6. command:
  7. - sentry
  8. - celery
  9. - beat
  10. image: sentry
  11. links:
  12. - redis:redis
  13. - postgres:postgres
  14. sentry:
  15. ports:
  16. - 9000:9000/tcp
  17. environment:
  18. SENTRY_SECRET_KEY: 'thisisnotsosecret'
  19. image: sentry
  20. links:
  21. - redis:redis
  22. - postgres:postgres
  23. postgres:
  24. environment:
  25. POSTGRES_PASSWORD: secret
  26. POSTGRES_USER: sentry
  27. image: postgres
  28. sentry-celery-worker:
  29. environment:
  30. SENTRY_SECRET_KEY: 'thisisnotsosecret'
  31. command:
  32. - sentry
  33. - celery
  34. - worker
  35. image: sentry
  36. links:
  37. - redis:redis
  38. - postgres:postgres
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement