[31f88f42] Keine neuen Commits in dieser Session.
Keine neuen Commits in dieser Session.
This commit is contained in:
@@ -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
25
backup_volumes_fixed.sh
Normal 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."
|
||||||
BIN
gtm-engine_migration_package.tar.gz
Normal file
BIN
gtm-engine_migration_package.tar.gz
Normal file
Binary file not shown.
BIN
secrets_and_data_backup.tar.gz
Normal file
BIN
secrets_and_data_backup.tar.gz
Normal file
Binary file not shown.
Reference in New Issue
Block a user