We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 648d6d8 + 8537603 commit 6654153Copy full SHA for 6654153
2 files changed
docker-compose.yml
@@ -3,9 +3,11 @@ version: '3'
3
services:
4
db:
5
image: postgres:13
6
+ command: -c config_file=/etc/postgresql/postgresql.conf
7
env_file:
8
- docker.env
9
volumes:
10
+ - ./etc/postgresql/postgresql.conf:/etc/postgresql/postgresql.conf
11
- db_data:/var/lib/postgresql/data/
12
13
web:
etc/postgresql/postgresql.conf
@@ -0,0 +1,8 @@
1
+# Default postgresql.conf
2
+
+listen_addresses = '*'
+max_connections = 100
+shared_buffers = 128MB
+dynamic_shared_memory_type = posix
+max_wal_size = 1GB
+min_wal_size = 80MB
0 commit comments