-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (50 loc) · 2.57 KB
/
Copy pathdocker-compose.yml
File metadata and controls
53 lines (50 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ──────────────────────────────────────────────────────────────────────────────
# Jarvis AI Desktop Agent – Docker Compose
# Startet Jarvis Web-UI + VNC-Desktop + WhatsApp-Bridge (alles in einem Container)
#
# Schnellstart:
# docker compose up -d
# Browser: https://<server-ip> (SSL-Warnung bestätigen)
# Login: jarvis / jarvis
# ──────────────────────────────────────────────────────────────────────────────
services:
# ── Jarvis Haupt-Container (inkl. WhatsApp-Bridge) ────────────────────────
jarvis:
image: ghcr.io/dev-core-busy/jarvis:latest
container_name: jarvis
restart: unless-stopped
ports:
- "80:80" # HTTP → HTTPS Redirect
- "443:443" # Web-UI (HTTPS)
- "6080:6080" # noVNC Desktop-Streaming
environment:
# Docker-Modus aktivieren (deaktiviert PAM-Authentifizierung)
JARVIS_DOCKER: "1"
# WhatsApp-Bridge Webhook (HTTPS wegen self-signed cert im Container)
JARVIS_WEBHOOK: "https://localhost/api/whatsapp/incoming"
NODE_TLS_REJECT_UNAUTHORIZED: "0"
# Web-Login Passwort (Benutzername ist immer "jarvis")
JARVIS_PASSWORD: "${JARVIS_PASSWORD:-jarvis}"
# !! WICHTIG: Auf die eigene Server-IP setzen – sonst wird das SSL-Zertifikat
# !! von Windows abgelehnt! Beispiel: SERVER_IP: "1.2.3.4"
SERVER_IP: "${SERVER_IP:-127.0.0.1}"
# LLM API-Keys (alternativ im Web-UI unter Einstellungen eintragen)
# GEMINI_API_KEY: "..."
# ANTHROPIC_API_KEY: "..."
# OPENROUTER_API_KEY: "..."
volumes:
# Persistente Daten (Memory, Wissensdatenbank, Logs, WhatsApp-Session)
- jarvis-data:/app/data
# SSL-Zertifikate (werden beim ersten Start automatisch erstellt)
- jarvis-certs:/app/certs
# WhatsApp-Session (Baileys Auth-Daten persistent)
- wa-session:/app/services/whatsapp-bridge/auth
shm_size: "256mb" # Für Browser-Automation empfohlen
# ── Volumes ────────────────────────────────────────────────────────────────────
volumes:
jarvis-data:
driver: local
jarvis-certs:
driver: local
wa-session:
driver: local