Skip to content

Instantly share code, notes, and snippets.

View ivenspontes's full-sized avatar

Ivens Pontes ivenspontes

  • Alagoas, Brazil
  • 07:57 (UTC -03:00)
View GitHub Profile
@lfittl
lfittl / docker-compose.yml
Last active May 10, 2024 06:30
Enabling pg_stat_statements in a Docker container
version: '2'
services:
db:
image: postgres:16
ports:
- "5432:5432"
command: >
postgres
-c shared_preload_libraries='pg_stat_statements'