You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the default docker-compose configuration the brick-server fails because to many connections to Postgres.
Same situation as here #5 (comment)
My workaround is setting the max_connections parameters for the Postgres instance.
Here the snippet in my docker-compose.yml
brickserver-postgres:
container_name: brickserver-postgres
image: "jbkoh/brickserver-postgresql:latest"
command: postgres -c 'max_connections=300'
environment: # Below secrets should be matched with the information in `configs.json` too.
- POSTGRES_USER=bricker
- POSTGRES_PASSWORD=brick-demo
- POSTGRES_DB=brick
the interesting line is:
command: postgres -c 'max_connections=300'
The text was updated successfully, but these errors were encountered:
Using the default docker-compose configuration the brick-server fails because to many connections to Postgres.
Same situation as here #5 (comment)
My workaround is setting the
max_connections
parameters for the Postgres instance.Here the snippet in my
docker-compose.yml
the interesting line is:
The text was updated successfully, but these errors were encountered: