ARCANE-VM-SETUP.md: Setup abgeschlossen

- Arcane läuft unter 192.168.178.162:3552
- Docker + docker-compose installiert
- Projects Directory: /home/arcane/projects
This commit is contained in:
Hitonabi
2026-07-21 16:41:11 +02:00
parent e91d4a18b7
commit e0c4a35e6c
+43 -18
View File
@@ -1,24 +1,49 @@
# Arcane VM Setup Status
# Arcane VM Setup - ABGESCHLOSSEN
## Aktueller Stand
- VM IP: 192.168.178.162
- User: arcane
- Status: Warte auf SSH-Verbindung (PowerShell Timeout Issue)
## Status
- **VM IP:** 192.168.178.162
- **Arcane:** Erreichbar unter http://192.168.178.162:3552
- **Docker:** Installiert und läuft
- **Projects Directory:** /home/arcane/projects
## Setup-Skript
## Nächste Schritte in Arcane
Ich habe `arcane-vm-setup.sh` erstellt. Führe dies auf der VM aus:
1. Öffne http://192.168.178.162:3552
2. Gehe zu **Projects****Add Git Repository**
3. Repository URL: `https://git.tobisniceshomelab.ddnsfree.com/Hitonabi/rippy.git`
4. Branch: `main`
5. Compose File Path: `docker-compose.yml`
6. Sync Name: `rippy`
7. **WICHTIG:** Deaktiviere "Sync sibling files" (Bug #2978)
8. Klicke **Create Sync**
9. Git Sync erneut versuchen → wird jetzt erfolgreich sein!
```bash
chmod +x arcane-vm-setup.sh
./arcane-vm-setup.sh
## Docker Compose Datei
Die Datei wurde unter `/home/arcane/docker-compose.yml` erstellt.
```yaml
version: '3.8'
services:
arcane:
image: ghcr.io/getarcaneapp/manager:latest
container_name: arcane
ports:
- '3552:3552'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- arcane-data:/app/data
- /home/arcane/projects:/app/data/projects
environment:
- PROJECTS_DIRECTORY=/app/data/projects
- APP_URL=http://192.168.178.162:3552
- PUID=1000
- PGID=1000
- ENCRYPTION_KEY=<generiert>
- JWT_SECRET=<generiert>
restart: unless-stopped
volumes:
arcane-data:
```
## Nächste Schritte
1. **SSH auf VM verbinden** (mit Deinem Terminal, nicht über opencode)
2. **Setup-Skript ausführen**
3. **Arcane ist erreichbar unter**: http://192.168.178.162:3552
4. **Rippy importieren** über Git Sync
## Status: Warte auf Setup auf VM
## Status: Arcane läuft, Rippy Import bereit