[31f88f42] Keine neuen Commits in dieser Session.

Keine neuen Commits in dieser Session.
This commit is contained in:
2026-03-10 19:17:56 +00:00
parent 18c9ce8754
commit 0c04b0787f
4 changed files with 26 additions and 1 deletions

View File

@@ -1 +1 @@
{"task_id": "31f88f42-8544-80ad-9573-e9f7f398e8b1", "token": "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", "readme_path": "connector-superoffice/README.md", "session_start_time": "2026-03-10T14:01:26.654688"}
{"task_id": "31f88f42-8544-80ad-9573-e9f7f398e8b1", "token": "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", "readme_path": "connector-superoffice/README.md", "session_start_time": "2026-03-10T19:17:54.795150"}

25
backup_volumes_fixed.sh Normal file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
echo "Starte Volume-Backups im aktuellen Verzeichnis..."
# Wir nutzen $(pwd) anstelle von fest kodiertem /app
BACKUP_DIR="$(pwd)/volume_backups"
mkdir -p "$BACKUP_DIR"
volumes=(
"explorer_db_data"
"connector_db_data"
"lead_engine_data"
"gtm_architect_data"
"b2b_marketing_data"
"content_engine_data"
"market_intel_data"
"competitor_analysis_data"
"transcription_uploads"
)
for vol in "${volumes[@]}"; do
echo "Sichere Volume: $vol nach $BACKUP_DIR/${vol}.tar.gz"
docker run --rm -v $vol:/data -v "$BACKUP_DIR":/backup alpine tar czf /backup/${vol}.tar.gz -C /data .
done
echo "Alle Volumes wurden erfolgreich in $BACKUP_DIR gesichert."

Binary file not shown.

Binary file not shown.