e0c4a35e6c
- Arcane läuft unter 192.168.178.162:3552 - Docker + docker-compose installiert - Projects Directory: /home/arcane/projects
50 lines
1.3 KiB
Markdown
50 lines
1.3 KiB
Markdown
# Arcane VM Setup - ABGESCHLOSSEN
|
|
|
|
## 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
|
|
|
|
## Nächste Schritte in Arcane
|
|
|
|
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!
|
|
|
|
## 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:
|
|
```
|
|
|
|
## Status: Arcane läuft, Rippy Import bereit
|