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

@@ -1,7 +1,7 @@
services:
condado-newsletter-postgress:
condado-newsletter-postgres:
image: postgres:16
container_name: condado-newsletter-postgress
container_name: condado-newsletter-postgres
restart: unless-stopped
environment:
POSTGRES_DB: ${APP_DB_NAME:-condado}
@@ -21,12 +21,12 @@ services:
container_name: condado-newsletter
restart: unless-stopped
depends_on:
condado-newsletter-postgress:
condado-newsletter-postgres:
condition: service_healthy
environment:
SPRING_PROFILES_ACTIVE: prod
SPRING_JPA_HIBERNATE_DDL_AUTO: ${SPRING_JPA_HIBERNATE_DDL_AUTO:-update}
SPRING_DATASOURCE_URL: jdbc:postgresql://condado-newsletter-postgress:5432/${APP_DB_NAME:-condado}
SPRING_DATASOURCE_URL: jdbc:postgresql://condado-newsletter-postgres:5432/${APP_DB_NAME:-condado}
SPRING_DATASOURCE_USERNAME: ${SPRING_DATASOURCE_USERNAME}
SPRING_DATASOURCE_PASSWORD: ${SPRING_DATASOURCE_PASSWORD}
APP_PASSWORD: ${APP_PASSWORD}