fix: align root docs and lab preparation cleanup
This commit is contained in:
+5
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user