From 1957a32dcbcae298ac4fcb1611e973c899023eec Mon Sep 17 00:00:00 2001 From: Vasiliy Vasilyuk Date: Wed, 12 Jul 2023 21:26:05 +0300 Subject: [PATCH] Increase the maximum number of connections This is to simplify testing using the `-count=100` option. --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index c757123..a7fa8cc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,6 +3,7 @@ version: "3.8" services: postgres: image: postgres:15.3-alpine3.18 + command: postgres -c 'max_connections=1000' environment: POSTGRES_DB: postgres POSTGRES_PASSWORD: postgres