7c0126f2ef
- Dockerfile: Brave-apt-Repo + `playwright install --with-deps chrome msedge`, beide hinter TARGETARCH=amd64-Gate und best-effort (|| echo) → arm64-Dev- Builds (macmini) brechen NICHT, laufen mit den 4 Default-Engines; Brave/ Chrome/Edge sind amd64-only opt-in-Extras (EXTRA_PROFILES). - docker-compose.hetzner.yml: consent-tester auf linux/amd64 (statt arm64- Emulation auf Orca) — Voraussetzung dafuer, dass die echten Browser ueberhaupt installiert werden. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
66 lines
1.9 KiB
YAML
66 lines
1.9 KiB
YAML
# =========================================================
|
|
# BreakPilot Compliance — Orca Production Override
|
|
# =========================================================
|
|
# Verwendung: docker compose -f docker-compose.yml -f docker-compose.hetzner.yml up -d
|
|
#
|
|
# Aenderungen gegenueber docker-compose.yml:
|
|
# - Platform: arm64 → amd64 (Orca = x86_64)
|
|
# - Network: external → auto-create (kein breakpilot-core auf Orca)
|
|
# - depends_on: core-health-check entfernt (kein Core auf Orca)
|
|
# - API URLs: auf Orca-interne Adressen angepasst
|
|
# =========================================================
|
|
|
|
# Auf Orca laeuft kein breakpilot-core, daher Network selbst erstellen
|
|
networks:
|
|
breakpilot-network:
|
|
external: false
|
|
name: breakpilot-network
|
|
|
|
services:
|
|
|
|
# Core-Health-Check deaktivieren (Core laeuft nicht auf Orca)
|
|
core-health-check:
|
|
entrypoint: ["sh", "-c", "echo 'Core health check skipped on Orca' && exit 0"]
|
|
restart: "no"
|
|
|
|
admin-compliance:
|
|
platform: linux/amd64
|
|
depends_on:
|
|
core-health-check:
|
|
condition: service_completed_successfully
|
|
backend-compliance:
|
|
condition: service_started
|
|
|
|
developer-portal:
|
|
platform: linux/amd64
|
|
|
|
backend-compliance:
|
|
platform: linux/amd64
|
|
depends_on:
|
|
core-health-check:
|
|
condition: service_completed_successfully
|
|
|
|
ai-compliance-sdk:
|
|
platform: linux/amd64
|
|
depends_on:
|
|
core-health-check:
|
|
condition: service_completed_successfully
|
|
|
|
compliance-tts-service:
|
|
platform: linux/amd64
|
|
|
|
document-crawler:
|
|
platform: linux/amd64
|
|
|
|
dsms-node:
|
|
platform: linux/amd64
|
|
|
|
docs:
|
|
platform: linux/amd64
|
|
|
|
# consent-tester native amd64 auf Orca (x86_64) statt arm64-Emulation —
|
|
# Voraussetzung fuer die echten Brave/Chrome/Edge-Browser der Matrix
|
|
# (amd64-only, siehe consent-tester/Dockerfile, TARGETARCH-Gate).
|
|
consent-tester:
|
|
platform: linux/amd64
|