Advertisement
Guest User

Untitled

a guest
Feb 24th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. SentryPostgres:
  2. environment:
  3. POSTGRES_PASSWORD: 'some_db_pw'
  4. POSTGRES_USER: sentry
  5. PGDATA: /var/lib/postgresql/data/pgdata
  6. labels:
  7. io.rancher.container.pull_image: always
  8. tty: true
  9. image: postgres
  10. volumes:
  11. - /root/Rancher/Sentry/postgres:/var/lib/postgresql/data/pgdata
  12. stdin_open: true
  13. CeleryBeat:
  14. environment:
  15. SENTRY_SECRET_KEY: some_secret
  16. labels:
  17. io.rancher.container.pull_image: always
  18. tty: true
  19. command:
  20. - sentry
  21. - celery
  22. - beat
  23. image: sentry:8.1
  24. links:
  25. - SentryRedis:redis
  26. - SentryPostgres:postgres
  27. stdin_open: true
  28. CeleryWorker:
  29. environment:
  30. SENTRY_SECRET_KEY: some_secret
  31. labels:
  32. io.rancher.container.pull_image: always
  33. tty: true
  34. command:
  35. - sentry
  36. - celery
  37. - worker
  38. image: sentry:8.1
  39. links:
  40. - SentryRedis:redis
  41. - SentryPostgres:postgres
  42. stdin_open: true
  43. SentryRedis:
  44. labels:
  45. io.rancher.container.pull_image: always
  46. tty: true
  47. image: redis
  48. volumes:
  49. - /root/Rancher/Sentry/redis:/data
  50. stdin_open: true
  51. Sentry:
  52. environment:
  53. SENTRY_EMAIL_HOST: smtp.mandrillapp.com # except not mandrill, cuz they suck
  54. SENTRY_EMAIL_PORT: '587'
  55. SENTRY_EMAIL_USER: tj@tjshafer.com
  56. SENTRY_EMAIL_PASSWORD: some_api_key
  57. SENTRY_SERVER_EMAIL: tj@tjshafer.com
  58. SENTRY_SECRET_KEY: some_secret
  59. labels:
  60. io.rancher.container.pull_image: always
  61. tty: true
  62. image: sentry:8.1
  63. links:
  64. - SentryRedis:redis
  65. - SentryPostgres:postgres
  66. volumes:
  67. - /root/Rancher/Sentry/data:/var/lib/sentry/files
  68. stdin_open: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement