committed by
Bill Maxwell
parent
4e613657fc
commit
24d80f79b7
@@ -0,0 +1,91 @@
|
||||
sentry-postgres:
|
||||
environment:
|
||||
POSTGRES_USER: sentry
|
||||
POSTGRES_PASSWORD: secret
|
||||
PGDATA: /data/postgres/data
|
||||
log_driver: ''
|
||||
labels:
|
||||
io.rancher.scheduler.global: 'true'
|
||||
io.rancher.container.pull_image: always
|
||||
tty: true
|
||||
log_opt: {}
|
||||
image: postgres:9.5.3
|
||||
stdin_open: true
|
||||
sentry-cron:
|
||||
environment:
|
||||
SENTRY_EMAIL_HOST: ${sentry_email_host}
|
||||
SENTRY_EMAIL_PASSWORD: ${sentry_email_password}
|
||||
SENTRY_EMAIL_PORT: '${sentry_email_port}'
|
||||
SENTRY_EMAIL_USER: ${sentry_email_user}
|
||||
SENTRY_SECRET_KEY: ${sentry_secret_key}
|
||||
SENTRY_SERVER_EMAIL: ${sentry_server_email}
|
||||
log_driver: ''
|
||||
labels:
|
||||
io.rancher.scheduler.global: 'true'
|
||||
io.rancher.container.pull_image: always
|
||||
tty: true
|
||||
command:
|
||||
- run
|
||||
- cron
|
||||
log_opt: {}
|
||||
image: sentry:8.5.0
|
||||
links:
|
||||
- sentry-postgres:postgres
|
||||
- sentry-redis:redis
|
||||
stdin_open: true
|
||||
sentry-redis:
|
||||
log_driver: ''
|
||||
labels:
|
||||
io.rancher.scheduler.global: 'true'
|
||||
io.rancher.container.pull_image: always
|
||||
tty: true
|
||||
log_opt: {}
|
||||
image: redis:3.2.0-alpine
|
||||
stdin_open: true
|
||||
sentry:
|
||||
ports:
|
||||
- ${sentry_public_port}:9000/tcp
|
||||
environment:
|
||||
SENTRY_EMAIL_HOST: ${sentry_email_host}
|
||||
SENTRY_EMAIL_PASSWORD: ${sentry_email_password}
|
||||
SENTRY_EMAIL_PORT: '${sentry_email_port}'
|
||||
SENTRY_EMAIL_USER: ${sentry_email_user}
|
||||
SENTRY_SECRET_KEY: ${sentry_secret_key}
|
||||
SENTRY_SERVER_EMAIL: ${sentry_server_email}
|
||||
log_driver: ''
|
||||
labels:
|
||||
io.rancher.scheduler.global: 'true'
|
||||
io.rancher.container.pull_image: always
|
||||
tty: true
|
||||
command:
|
||||
- /bin/bash
|
||||
- -c
|
||||
- sentry upgrade --noinput && sentry createuser --email ${sentry_inital_user_email} --password ${sentry_inital_user_password} --superuser && /entrypoint.sh run web || /entrypoint.sh run web
|
||||
log_opt: {}
|
||||
image: sentry:8.5.0
|
||||
links:
|
||||
- sentry-postgres:postgres
|
||||
- sentry-redis:redis
|
||||
stdin_open: true
|
||||
sentry-worker:
|
||||
environment:
|
||||
SENTRY_EMAIL_HOST: ${sentry_email_host}
|
||||
SENTRY_EMAIL_PASSWORD: ${sentry_email_password}
|
||||
SENTRY_EMAIL_PORT: '${sentry_email_port}'
|
||||
SENTRY_EMAIL_USER: ${sentry_email_user}
|
||||
SENTRY_SECRET_KEY: ${sentry_secret_key}
|
||||
SENTRY_SERVER_EMAIL: ${sentry_server_email}
|
||||
log_driver: ''
|
||||
labels:
|
||||
io.rancher.scheduler.global: 'true'
|
||||
io.rancher.container.pull_image: always
|
||||
tty: true
|
||||
command:
|
||||
- run
|
||||
- worker
|
||||
log_opt: {}
|
||||
image: sentry:8.5.0
|
||||
links:
|
||||
- sentry-postgres:postgres
|
||||
- sentry-redis:redis
|
||||
stdin_open: true
|
||||
Reference in New Issue
Block a user