initial COM1 gateway system blueprint

This commit is contained in:
harald
2026-03-06 14:37:04 +00:00
commit 48cd0f8d3c
395 changed files with 29966 additions and 0 deletions

20
bin/hxki_orchestra_repair.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -euo pipefail
DOCKER_DIR="/opt/hx-ki/docker"
cd "$DOCKER_DIR"
echo "=> Backup docker-compose.yml ..."
cp docker-compose.yml docker-compose.yml.bak_orchestra_$(date +%Y%m%d_%H%M%S)
echo "=> Entferne Service 'hxki-web' aus docker-compose.yml ..."
awk '
/^[[:space:]]*hxki-web:/ { in_blk=1; next }
in_blk && NF==0 { in_blk=0; next }
!in_blk { print }
' docker-compose.yml > docker-compose.yml.tmp
mv docker-compose.yml.tmp docker-compose.yml
echo "=> Orchester starten ..."
docker compose up -d --remove-orphans