mirror of
https://github.com/suitenumerique/docs.git
synced 2026-04-25 17:15:01 +02:00
In order to run the tests we need to increase the max pool size. Only having 4 connections in the pool is not enough and all the tests using a transaction are failing with a tiemout error. We have the same problem running locally so the same value is added to the postgresql environment file
13 lines
240 B
Plaintext
13 lines
240 B
Plaintext
# Postgresql db container configuration
|
|
POSTGRES_DB=impress
|
|
POSTGRES_USER=dinum
|
|
POSTGRES_PASSWORD=pass
|
|
|
|
# App database configuration
|
|
DB_HOST=postgresql
|
|
DB_NAME=impress
|
|
DB_USER=dinum
|
|
DB_PASSWORD=pass
|
|
DB_PORT=5432
|
|
DB_PSYCOPG_POOL_MAX_SIZE=15
|