Advertisement
Guest User

Untitled

a guest
Oct 8th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 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. links:
  15. - redis
  16. - postgres
  17. ports:
  18. - "8999:9000"
  19.  
  20. celery-beat:
  21. image: sentry
  22. links:
  23. - redis
  24. - postgres
  25. command: sentry celery beat
  26.  
  27. celery-worker:
  28. image: sentry
  29. links:
  30. - redis
  31. - postgres
  32. command: sentry celery worker
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement