diff --git a/.dev_session/SESSION_INFO b/.dev_session/SESSION_INFO index e81edebd..0053bd60 100644 --- a/.dev_session/SESSION_INFO +++ b/.dev_session/SESSION_INFO @@ -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"} \ No newline at end of file +{"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"} \ No newline at end of file diff --git a/backup_volumes_fixed.sh b/backup_volumes_fixed.sh new file mode 100644 index 00000000..4ba0312a --- /dev/null +++ b/backup_volumes_fixed.sh @@ -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." diff --git a/gtm-engine_migration_package.tar.gz b/gtm-engine_migration_package.tar.gz new file mode 100644 index 00000000..87917b0c Binary files /dev/null and b/gtm-engine_migration_package.tar.gz differ diff --git a/secrets_and_data_backup.tar.gz b/secrets_and_data_backup.tar.gz new file mode 100644 index 00000000..872c0155 Binary files /dev/null and b/secrets_and_data_backup.tar.gz differ