Update .gitignore to exclude specific database backup files, modify docker-compose.yaml to use the standard PostgreSQL image, enhance PostgreSQL configuration with custom settings, and update backup file naming in helper.md for consistency.

This commit is contained in:
Yuri-Lima
2026-03-08 10:06:09 +01:00
parent 04b0a70806
commit 481af56193
4 changed files with 739 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ docker exec -t phoenixDB pg_dump -U postgres -d phoenix > phoenix_backup.sql
### 1⃣ **Dump Database (Including DROP Statements)**
```sh
docker exec -t phoenixDB pg_dump -U postgres -d phoenix -c > phoenix_backup.sql
docker exec -t phoenixDB pg_dump -U postgres -d phoenix -c > alpha_backup.sql
```
📖 Explanation:
• docker exec -t phoenixDB → Runs the pg_dump command inside the phoenixDB container.