Commit 034a780
committed
fix(ci): add default environment variables to docker-compose for CI
The docs validation was failing in CI with connection refused errors because
PostgreSQL was not configured to listen on port 7432 inside the container.
Added default values for all PostgreSQL environment variables in docker-compose.yml:
- PGPORT defaults to 7432 (ensures PostgreSQL listens on the expected port)
- PGUSER, POSTGRES_DB, POSTGRES_USER default to 'cipherstash'
- POSTGRES_PASSWORD defaults to 'password'
This ensures the container works correctly even when mise environment variables
are not properly exported to the docker compose subprocess in CI.1 parent b5f0fac commit 034a780
1 file changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | | - | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
0 commit comments