Some checks failed
CI/CD / go-lint (push) Has been skipped
CI/CD / python-lint (push) Has been skipped
CI/CD / nodejs-lint (push) Has been skipped
CI/CD / test-go-ai-compliance (push) Failing after 38s
CI/CD / test-python-backend-compliance (push) Successful in 36s
CI/CD / test-python-document-crawler (push) Successful in 26s
CI/CD / test-python-dsms-gateway (push) Successful in 26s
CI/CD / deploy-hetzner (push) Has been skipped
- Gitea Actions CI um deploy-hetzner Job erweitert - Automatischer Build + Deploy bei Push auf main (nach Tests) - docker-compose.hetzner.yml Override (amd64 statt arm64) - Deploy-Dir: /opt/breakpilot-compliance/ - Baut parallel: admin, backend, ai-sdk, developer-portal - Health Checks nach Deploy Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
803 B
YAML
35 lines
803 B
YAML
# =========================================================
|
|
# BreakPilot Compliance — Hetzner Override
|
|
# =========================================================
|
|
# Verwendung: docker compose -f docker-compose.yml -f docker-compose.hetzner.yml up -d
|
|
#
|
|
# Entfernt ARM64-Platform-Constraint (Hetzner = x86_64/amd64)
|
|
# und passt Hetzner-spezifische Einstellungen an.
|
|
# =========================================================
|
|
|
|
services:
|
|
|
|
admin-compliance:
|
|
platform: linux/amd64
|
|
|
|
developer-portal:
|
|
platform: linux/amd64
|
|
|
|
backend-compliance:
|
|
platform: linux/amd64
|
|
|
|
ai-compliance-sdk:
|
|
platform: linux/amd64
|
|
|
|
compliance-tts-service:
|
|
platform: linux/amd64
|
|
|
|
document-crawler:
|
|
platform: linux/amd64
|
|
|
|
dsms-node:
|
|
platform: linux/amd64
|
|
|
|
docs:
|
|
platform: linux/amd64
|