-
-
Save spacecowb0y/e9fc00b37cbd02f70868 to your computer and use it in GitHub Desktop.
A simple docker-compose YML to run Sentry.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis: | |
image: redis | |
postgres: | |
image: postgres:9.4 | |
environment: | |
- POSTGRES_USER:sentry | |
- POSTGRES_PASSWORD:sentry | |
volumes: | |
- /var/data/sentry/postgre:/var/lib/postgresql/data:rw | |
sentry: | |
image: sentry:7.7 | |
links: | |
- redis | |
- postgres | |
ports: | |
- 9000:9000 | |
stdin_open: true | |
tty: true | |
environment: | |
- SENTRY_URL_PREFIX:'http://sentry.example.com' | |
- SENTRY_ADMIN_EMAIL:'[email protected]' | |
sentry_celery_beat: | |
image: sentry:7.7 | |
links: | |
- redis | |
- postgres | |
command: "sentry celery beat" | |
sentry_celery_worker: | |
image: sentry:7.7 | |
links: | |
- redis | |
- postgres | |
command: "sentry celery worker" |
Author
spacecowb0y
commented
Dec 2, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment