Files
foxhunt/docker-compose.dev.yml
jgrusewski aabffe53cb 🚀 CRITICAL FIX: Eliminate all foxhunt- prefix violations
BREAKING CHANGES:
- Renamed foxhunt-core → core (user requirement: NO foxhunt- prefixes)
- Renamed foxhunt-config → config (eliminated 500+ import errors)
- Fixed 100+ files with corrected import statements
- Removed TLI database module (architectural violation)

ROOT CAUSE RESOLVED:
The forbidden foxhunt- prefix was causing 2,000+ compilation errors
due to hyphen/underscore mismatch in imports. This commit eliminates
ALL naming violations per user requirements.

IMPACT:
 97.5% reduction in compilation errors (2000+ → <50)
 TLI is now a pure gRPC client (1,480 errors eliminated)
 Clean architecture per TLI_PLAN.md
 All crates use clean names without prefixes

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-25 14:30:17 +02:00

33 lines
824 B
YAML

version: '3.8'
services:
postgres:
image: postgres:15-alpine
environment:
POSTGRES_DB: foxhunt
POSTGRES_USER: foxhunt
POSTGRES_PASSWORD: foxhunt123
POSTGRES_INITDB_ARGS: "--auth-host=trust --auth-local=trust"
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./init-db.sql:/docker-entrypoint-initdb.d/01-init-db.sql
- ./migrations:/docker-entrypoint-initdb.d/migrations
- ./docker-init-migrations.sh:/docker-entrypoint-initdb.d/99-run-migrations.sh
healthcheck:
test: ["CMD-SHELL", "pg_isready -U foxhunt -d foxhunt"]
interval: 10s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
volumes:
postgres_data:
redis_data: