Files
breakpilot-core/consent-service/docker-compose.yml
Benjamin Boenisch ad111d5e69 Initial commit: breakpilot-core - Shared Infrastructure
Docker Compose with 24+ services:
- PostgreSQL (PostGIS), Valkey, MinIO, Qdrant
- Vault (PKI/TLS), Nginx (Reverse Proxy)
- Backend Core API, Consent Service, Billing Service
- RAG Service, Embedding Service
- Gitea, Woodpecker CI/CD
- Night Scheduler, Health Aggregator
- Jitsi (Web/XMPP/JVB/Jicofo), Mailpit

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 23:47:13 +01:00

42 lines
829 B
YAML

version: '3.8'
services:
consent-service:
build: .
ports:
- "8081:8081"
env_file:
- .env
environment:
- DATABASE_URL=postgres://consent:consent123@postgres:5432/consent_db?sslmode=disable
depends_on:
postgres:
condition: service_healthy
networks:
- consent-network
postgres:
image: postgres:16-alpine
ports:
- "5433:5432"
environment:
- POSTGRES_USER=consent
- POSTGRES_PASSWORD=consent123
- POSTGRES_DB=consent_db
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U consent -d consent_db"]
interval: 5s
timeout: 5s
retries: 5
networks:
- consent-network
volumes:
postgres_data:
networks:
consent-network:
driver: bridge