courtmitra / infra /docker-compose.yml
hetanshwaghela's picture
Day 1–2: monorepo scaffold + ingestion→intake→evidence loop
170b9b6
Raw
History Blame
795 Bytes
services:
postgres:
build:
context: .
dockerfile: Dockerfile.postgres
container_name: courtmitra_pg
restart: unless-stopped
environment:
POSTGRES_USER: courtmitra
POSTGRES_PASSWORD: courtmitra
POSTGRES_DB: courtmitra
ports:
- "5432:5432"
volumes:
- courtmitra_pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U courtmitra -d courtmitra"]
interval: 5s
timeout: 5s
retries: 10
inngest:
image: inngest/inngest:v1.22.0
container_name: courtmitra_inngest
restart: unless-stopped
command: ["inngest", "dev", "-u", "http://host.docker.internal:3002/api/inngest"]
ports:
- "8288:8288"
depends_on:
- postgres
volumes:
courtmitra_pgdata: