Advertisement
Guest User

Untitled

a guest
Jan 21st, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. postgres:
  2. image: postgres
  3. environment:
  4. - POSTGRES_PASSWORD=secret
  5. - POSTGRES_USER=sentry
  6. redis:
  7. image: redis
  8. sentry:
  9. image: sentry
  10. ports:
  11. - "9000:9000"
  12. environment:
  13. - SENTRY_SECRET_KEY=no
  14. links:
  15. - redis:redis
  16. - postgres:postgres
  17. beat:
  18. image: sentry
  19. links:
  20. - redis:redis
  21. - postgres:postgres
  22. command: celery beat
  23. worker:
  24. image: sentry
  25. links:
  26. - redis:redis
  27. - postgres:postgres
  28. command: celery worker
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement