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:
+43
-18
@@ -1,24 +1,49 @@
|
|||||||
# Arcane VM Setup Status
|
# Arcane VM Setup - ABGESCHLOSSEN
|
||||||
|
|
||||||
## Aktueller Stand
|
## Status
|
||||||
- VM IP: 192.168.178.162
|
- **VM IP:** 192.168.178.162
|
||||||
- User: arcane
|
- **Arcane:** Erreichbar unter http://192.168.178.162:3552
|
||||||
- Status: Warte auf SSH-Verbindung (PowerShell Timeout Issue)
|
- **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
|
## Docker Compose Datei
|
||||||
chmod +x arcane-vm-setup.sh
|
|
||||||
./arcane-vm-setup.sh
|
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
|
## Status: Arcane läuft, Rippy Import bereit
|
||||||
|
|
||||||
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
|
|
||||||
|
|||||||
Reference in New Issue
Block a user