22 lines
918 B
Bash
22 lines
918 B
Bash
|
COMPOSE_PROJECT_NAME=sentry-self-hosted
|
||
|
COMPOSE_PROFILES=feature-complete
|
||
|
SENTRY_EVENT_RETENTION_DAYS=90
|
||
|
# You can either use a port number or an IP:PORT combo for SENTRY_BIND
|
||
|
# See https://docs.docker.com/compose/compose-file/#ports for more
|
||
|
SENTRY_BIND=96
|
||
|
# Set SENTRY_MAIL_HOST to a valid FQDN (host/domain name) to be able to send emails!
|
||
|
# SENTRY_MAIL_HOST=example.com
|
||
|
SENTRY_IMAGE=getsentry/sentry:nightly
|
||
|
SNUBA_IMAGE=getsentry/snuba:nightly
|
||
|
RELAY_IMAGE=getsentry/relay:nightly
|
||
|
SYMBOLICATOR_IMAGE=getsentry/symbolicator:nightly
|
||
|
VROOM_IMAGE=getsentry/vroom:nightly
|
||
|
HEALTHCHECK_INTERVAL=30s
|
||
|
HEALTHCHECK_TIMEOUT=1m30s
|
||
|
HEALTHCHECK_RETRIES=10
|
||
|
# Caution: Raising max connections of postgres increases CPU and RAM usage
|
||
|
# see https://github.com/getsentry/self-hosted/pull/2740 for more information
|
||
|
POSTGRES_MAX_CONNECTIONS=100
|
||
|
# Set SETUP_JS_SDK_ASSETS to 1 to enable the setup of JS SDK assets
|
||
|
# SETUP_JS_SDK_ASSETS=1
|