fix: align root docs and lab preparation cleanup

This commit is contained in:
Luca Sacchi Ricciardi
2026-04-10 15:01:23 +00:00
parent 478e940b43
commit bba7a21c09
3 changed files with 26 additions and 11 deletions
+5 -2
View File
@@ -162,9 +162,12 @@ curl http://localhost:9000/minio/health/live
docker exec lab05-db pg_isready -U lab05_user
```
**Soluzione:** Il database è in rete privata. Usa container app per connetterti:
**Soluzione:** Il database è in rete privata. Usa un client PostgreSQL nella stessa rete privata:
```bash
docker exec lab05-app psql -h db -U lab05_user -d lab05_db
docker run --rm --network lab05-vpc-private \
-e PGPASSWORD=lab05_password \
postgres:16-alpine \
psql -h db -U lab05_user -d lab05_db
```
#### Connessione dal host fallisce