Last active
September 13, 2024 17:23
-
-
Save lfittl/1b0671ac07b33521ea35fcd22b0120f5 to your computer and use it in GitHub Desktop.
Enabling pg_stat_statements in a Docker container
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
db: | |
image: postgres:16 | |
ports: | |
- "5432:5432" | |
command: > | |
postgres | |
-c shared_preload_libraries='pg_stat_statements' | |
volumes: | |
- /var/lib/postgresql/data | |
environment: | |
POSTGRES_USER: myproject |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For me, adding the commands of
pg_stat_statements
in docker-compose.yml is not workedI added manually in the
postgresql.conf
inside the docker container worked