mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-14 12:25:51 +00:00
Fix environment variable defaults in rallly.yaml
- SERVICE_URL already includes protocol - SMTP_SECURE and SMTP_TLS_ENABLED need a default value
This commit is contained in:
@@ -32,15 +32,15 @@ services:
|
||||
- SERVICE_URL_RALLLY_3000
|
||||
- DATABASE_URL=postgres://${SERVICE_USER_POSTGRES}:${SERVICE_PASSWORD_POSTGRES}@rallly_db:5432/${POSTGRES_DB:-rallly}
|
||||
- SECRET_PASSWORD=${SERVICE_PASSWORD_64_RALLLY}
|
||||
- NEXT_PUBLIC_BASE_URL=https://${SERVICE_URL_RALLLY}
|
||||
- NEXT_PUBLIC_BASE_URL=${SERVICE_URL_RALLLY}
|
||||
- ALLOWED_EMAILS=${ALLOWED_EMAILS}
|
||||
- SUPPORT_EMAIL=${SUPPORT_EMAIL:-support@example.com}
|
||||
- SMTP_HOST=${SMTP_HOST}
|
||||
- SMTP_PORT=${SMTP_PORT}
|
||||
- SMTP_SECURE=${SMTP_SECURE}
|
||||
- SMTP_SECURE=${SMTP_SECURE:-false}
|
||||
- SMTP_USER=${SMTP_USER}
|
||||
- SMTP_PWD=${SMTP_PWD}
|
||||
- SMTP_TLS_ENABLED=${SMTP_TLS_ENABLED}
|
||||
- SMTP_TLS_ENABLED=${SMTP_TLS_ENABLED:-false}
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "bash -c ':> /dev/tcp/127.0.0.1/3000' || exit 1"]
|
||||
interval: 5s
|
||||
|
||||
Reference in New Issue
Block a user