fix(infra): use postgres -c flags instead of config_file override

The config_file override replaced the entire default PostgreSQL config
including listen_addresses, breaking inter-container communication.
Use inline -c flags instead which only override specific parameters.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-24 11:42:42 +01:00
parent fcd7c82ce4
commit e06e8cca59
2 changed files with 11 additions and 2 deletions

View file

@ -1,6 +1,9 @@
# PostgreSQL Performance Tuning for Mac Mini (16GB RAM)
# Shared with ~70 other containers, so conservative settings
# Network (required for Docker inter-container communication)
listen_addresses = '*'
# Performance
shared_buffers = 512MB
effective_cache_size = 2GB