Skip to content

Commit 569cc8e

Browse files
authored
fix "services.web.healthcheck.retries must be a number" (#1482)
fix #1343
1 parent 084ce62 commit 569cc8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ x-healthcheck-defaults: &healthcheck_defaults
1212
# https://github.com/getsentry/self-hosted/issues/1000
1313
interval: "$HEALTHCHECK_INTERVAL"
1414
timeout: "$HEALTHCHECK_TIMEOUT"
15-
retries: "$HEALTHCHECK_RETRIES"
15+
retries: $HEALTHCHECK_RETRIES
1616
start_period: 10s
1717
x-sentry-defaults: &sentry_defaults
1818
<<: *restart_policy
@@ -97,7 +97,7 @@ services:
9797
smtp:
9898
<<: *restart_policy
9999
image: tianon/exim4
100-
hostname: ${SENTRY_MAIL_HOST:-}
100+
hostname: "${SENTRY_MAIL_HOST:-}"
101101
volumes:
102102
- "sentry-smtp:/var/spool/exim4"
103103
- "sentry-smtp-log:/var/log/exim4"

0 commit comments

Comments
 (0)