fix: correct spelling of 'postgres' in Docker Compose and entrypoint scripts
All checks were successful
Build And Publish Production Image / Build And Publish Production Image (push) Successful in 15s

This commit is contained in:
2026-03-28 13:54:14 -03:00
parent 621bb1773c
commit eaf588f7d5
2 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ APP_DB_PASSWORD=${SPRING_DATASOURCE_PASSWORD:-condado}
mkdir -p /var/log/supervisor
# ── Defaults for external PostgreSQL service in production compose ───────────
export SPRING_DATASOURCE_URL=${SPRING_DATASOURCE_URL:-jdbc:postgresql://condado-newsletter-postgress:5432/${APP_DB_NAME}}
export SPRING_DATASOURCE_URL=${SPRING_DATASOURCE_URL:-jdbc:postgresql://condado-newsletter-postgres:5432/${APP_DB_NAME}}
export SPRING_DATASOURCE_USERNAME=${SPRING_DATASOURCE_USERNAME:-${APP_DB_USER}}
export SPRING_DATASOURCE_PASSWORD=${SPRING_DATASOURCE_PASSWORD:-${APP_DB_PASSWORD}}
export JWT_EXPIRATION_MS=${JWT_EXPIRATION_MS:-86400000}