# Open WebUI installieren – ChatGPT-Oberfläche für Ollama

Open WebUI auf VPS: Docker Install, mit Ollama verbinden, HTTPS, Multi-User, RAG – ChatGPT-Alternative selbst hosten.

**Kurzantwort:** **Open WebUI** + **Ollama** = eigene ChatGPT-Oberfläche auf dem VPS. Docker Compose in 5 Minuten.

**Wenn du hier landest:** Du hast Ollama laufen und willst eine benutzerfreundliche Chat-Oberfläche.

## Docker Compose (Ollama + Open WebUI)

`services:
  ollama:
    image: ollama/ollama
    volumes:
      - ollama:/root/.ollama
    restart: unless-stopped

  open-webui:
    image: ghcr.io/open-webui/open-webui:main
    ports:
      - "3000:8080"
    environment:
      - OLLAMA_BASE_URL=http://ollama:11434
    volumes:
      - open-webui:/app/backend/data
    depends_on:
      - ollama
    restart: unless-stopped

volumes:
  ollama:
  open-webui:`
## Nach dem Start

- Browser: `http://VPS-IP:3000`
- Admin-Account erstellen
- Modell wählen (vorher: `docker exec -it ollama ollama pull llama3`)
- HTTPS via [Traefik](/de/root-v-server/traefik-reverse-proxy) oder [Cloudflare Tunnel](/de/domain/cloudflare-tunnel-einrichten)

## Weiterführend

- [Ollama installieren](/de/selbst-hosten/ollama-installieren)
- [AI LLM Integration](/de/ai-llm-integration)
- [Open Source AI Models](/de/open-source-ai-models)
*Selbst hosten auf VPS: [VPS bestellen](https://nexorahost.com/Dedicated-server) · [panel.nexorahost.de](https://panel.nexorahost.de) · [nexorahost.com](https://nexorahost.com) (Frankfurt · DSGVO · NVMe)*
