Fix: Arcane Git Sync Workaround + Install-Skript

- ARCAN-FIX.md: Problem & Lösung beschrieben
- install-rippy.sh: Skript für direkte Docker Compose Installation
This commit is contained in:
Hitonabi
2026-07-21 15:18:44 +02:00
parent a032860a65
commit 853d6dc82c
2 changed files with 52 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/bin/bash
# Rippy Installations-Skript für LXC 106
# Führe dies auf LXC 106 aus: bash install-rippy.sh
set -e
echo "=== Rippy Installation auf LXC 106 ==="
# Verzeichnis erstellen
PROJECT_DIR="/opt/docker/rippy"
mkdir -p "$PROJECT_DIR"
cd "$PROJECT_DIR"
# Git clone
echo "Klone Repository..."
if [ -d ".git" ]; then
git pull origin main
else
git clone https://git.tobisniceshomelab.ddnsfree.com/Hitonabi/rippy.git .
fi
# Docker Compose starten
echo "Starte Rippy mit Docker Compose..."
docker compose up -d
echo "=== Installation abgeschlossen ==="
echo "Rippy läuft unter: http://localhost:8000"
echo "Logs ansehen: docker compose logs -f"