Update PostgreSQL configuration in .env.example and final report script

- Changed POSTGRES_HOST value in .env.example from 'db' to 'postgres' for clarity.
- Enhanced the final report script to display detailed PostgreSQL backup target information, including version, host, port, username, password, and database name.
This commit is contained in:
Yury Kossakovsky
2025-08-28 11:26:31 -06:00
parent f1c249167b
commit 68e03b95dc
2 changed files with 9 additions and 3 deletions

View File

@@ -203,10 +203,9 @@ RAGAPP_PASSWORD=
# Database - You can change these to any PostgreSQL database that has logical replication enabled.
############
POSTGRES_HOST=db
POSTGRES_DB=postgres
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
# default user is postgres
POSTGRES_USER=postgres
############