Skip to content

Instantly share code, notes, and snippets.

@slonoed
Created May 13, 2016 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slonoed/3f3b0663d705bba988505be68b82fdf3 to your computer and use it in GitHub Desktop.
Save slonoed/3f3b0663d705bba988505be68b82fdf3 to your computer and use it in GitHub Desktop.
redis:
image: redis
postgres:
image: postgres
environment:
- POSTGRES_PASSWORD=sentry
- POSTGRES_USER=sentry
volumes:
- /var/lib/postgresql/data
sentry:
image: sentry
links:
- redis
- postgres
ports:
- "8081:9000"
celery-beat:
image: sentry
links:
- redis
- postgres
command: sentry celery beat
celery-worker:
image: sentry
links:
- redis
- postgres
command: sentry celery worker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment