Skip to content

Commit e4e2b69

Browse files
Fix default values for mail configuration in docker-compose
1 parent 407146d commit e4e2b69

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ services:
1515
OTEL_EXPORTER_OTLP_ENDPOINT: ${OTEL_EXPORTER_OTLP_ENDPOINT:-http://jaeger:4317}
1616
PROMETHEUS_URL: ${PROMETHEUS_URL:-http://prometheus:9090}
1717
TRACING_SAMPLING_PROBABILITY: ${TRACING_SAMPLING_PROBABILITY:-1.0}
18-
MAIL_SMTP_AUTH: ${MAIL_SMTP_AUTH:false}
19-
MAIL_PASSWORD: ${MAIL_PASSWORD:00}
20-
MAIL_USERNAME: ${MAIL_USERNAME:00}
21-
MAIL_PORT: ${MAIL_PORT:1025}
22-
MAIL_HOST: ${MAIL_HOST:localhost}
18+
MAIL_SMTP_AUTH: ${MAIL_SMTP_AUTH:-false}
19+
MAIL_PASSWORD: ${MAIL_PASSWORD:-00}
20+
MAIL_USERNAME: ${MAIL_USERNAME:-00}
21+
MAIL_PORT: ${MAIL_PORT:-1025}
22+
MAIL_HOST: ${MAIL_HOST:-localhost}
2323
healthcheck:
2424
test: ["CMD", "wget", "-qO-", "http://localhost:8081/actuator/health"]
2525
interval: 30s

0 commit comments

Comments
 (0)