Skip to content

Instantly share code, notes, and snippets.

@Whipstickgostop
Last active April 20, 2016 03:00
Show Gist options
  • Save Whipstickgostop/94eeeb97462e6e06da48ce5e0b2615cf to your computer and use it in GitHub Desktop.
Save Whipstickgostop/94eeeb97462e6e06da48ce5e0b2615cf to your computer and use it in GitHub Desktop.
Docker compose for Sentry server with redis and celery workers
redis:
image: redis
sentry-celery-beat:
environment:
SENTRY_SECRET_KEY: 'thisisnotsosecret'
command:
- sentry
- celery
- beat
image: sentry
links:
- redis:redis
- postgres:postgres
sentry:
ports:
- 9000:9000/tcp
environment:
SENTRY_SECRET_KEY: 'thisisnotsosecret'
image: sentry
links:
- redis:redis
- postgres:postgres
postgres:
environment:
POSTGRES_PASSWORD: secret
POSTGRES_USER: sentry
image: postgres
sentry-celery-worker:
environment:
SENTRY_SECRET_KEY: 'thisisnotsosecret'
command:
- sentry
- celery
- worker
image: sentry
links:
- redis:redis
- postgres:postgres
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment