feat: add consent-tester service to docker-compose (port 8094, 2GB mem limit)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-29 12:33:20 +02:00
parent d105842bf2
commit f3c0481631
+22
View File
@@ -244,6 +244,28 @@ services:
# =========================================================
# DOCUMENT CRAWLER & AUTO-ONBOARDING
# =========================================================
consent-tester:
build:
context: ./consent-tester
dockerfile: Dockerfile
container_name: bp-compliance-consent-tester
platform: linux/arm64
ports:
- "8094:8094"
mem_limit: 2g
depends_on:
core-health-check:
condition: service_completed_successfully
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:8094/health"]
interval: 30s
timeout: 10s
start_period: 30s
retries: 3
restart: unless-stopped
networks:
- breakpilot-network
document-crawler:
build:
context: ./document-crawler