first commit

This commit is contained in:
gustavooth
2026-07-26 21:17:57 -03:00
commit 9de08ceef7
133 changed files with 38427 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
name: leads-extractor-db
services:
postgres:
image: postgres:18
environment:
POSTGRES_DB: ${POSTGRES_DB:-leads_extractor}
POSTGRES_USER: ${POSTGRES_USER:-leads}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-leads}
ports:
- "${POSTGRES_PORT:-5432}:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U \"$${POSTGRES_USER}\" -d \"$${POSTGRES_DB}\""]
interval: 5s
timeout: 5s
retries: 20
start_period: 10s
volumes:
- postgres_data:/var/lib/postgresql
volumes:
postgres_data: