Guest User

Untitled

a guest
Apr 14th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 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. volumes:
  10. - /var/lib/postgresql/data
  11.  
  12. sentry:
  13. image: sentry
  14. environment:
  15. - SENTRY_SECRET_KEY=generate-secret-key
  16. links:
  17. - redis
  18. - postgres
  19. ports:
  20. - "8081:9000"
  21.  
  22. celery-beat:
  23. image: sentry
  24. environment:
  25. - SENTRY_SECRET_KEY=generate-secret-key
  26. links:
  27. - redis
  28. - postgres
  29. command: sentry celery beat
  30.  
  31. celery-worker:
  32. image: sentry
  33. environment:
  34. - SENTRY_SECRET_KEY=generate-secret-key
  35. links:
  36. - redis
  37. - postgres
  38. command: sentry celery worker
Add Comment
Please, Sign In to add comment