| name | openwebui |
| description | Open WebUI AI chat interface management via Podman Quadlet. Provides a web UI
for interacting with Ollama models. Use when users need to configure, start,
or manage the Open WebUI service.
|
Open WebUI - AI Chat Interface
Overview
The openwebui command manages the Open WebUI service using Podman Quadlet containers. It provides a web-based chat interface for interacting with Ollama LLM models.
Key Concept: Open WebUI connects to Ollama via the bazzite-ai network using DNS (http://ollama:11434). Ensure Ollama is running before using Open WebUI.
Quick Reference
| Action | Command | Description |
|---|
| Config | ujust openwebui config | Configure Open WebUI |
| Delete | ujust openwebui delete | Remove instance config and container |
| Logs | ujust openwebui logs [--lines=N] | View container logs |
| Restart | ujust openwebui restart | Restart server |
| Shell | ujust openwebui shell [-- CMD] | Open shell or execute command in container |
| Start | ujust openwebui start | Start Open WebUI server |
| Status | ujust openwebui status | Show instance status |
| Stop | ujust openwebui stop | Stop Open WebUI server |
| URL | ujust openwebui url | Show web UI access URL |
Parameters
| Parameter | Long Flag | Short | Default | Description |
|---|
| Port | --port | -p | 3000 | Host port for web UI |
| Image | --image | -i | ghcr.io/open-webui/open-webui:main | Container image |
| Tag | --tag | -t | main | Image tag |
| Bind | --bind | -b | 127.0.0.1 | Bind address |
| Config Dir | --config-dir | -c | ~/.config/openwebui/1 | Config/data directory |
| Workspace | --workspace-dir | -w | (empty) | Workspace mount |
| GPU Type | --gpu-type | -g | auto | GPU type |
| Instance | --instance | -n | 1 | Instance number or all |
| Lines | --lines | -l | 50 | Log lines to show |
Configuration
ujust openwebui config
ujust openwebui config --port=3001
ujust openwebui config -p 3001
ujust openwebui config --bind=0.0.0.0
ujust openwebui config --port=3001 --bind=0.0.0.0
ujust openwebui config -p 3001 -b 0.0.0.0
ujust openwebui config --image=ghcr.io/open-webui/open-webui:cuda
Update Existing Configuration
Running config when already configured updates the existing settings:
ujust openwebui config --bind=0.0.0.0
ujust openwebui config --port=3002
Container Images
| Image | Description |
|---|
ghcr.io/open-webui/open-webui:main | Standard image (default) |
ghcr.io/open-webui/open-webui:cuda | NVIDIA CUDA optimized |
ghcr.io/open-webui/open-webui:ollama | Bundled with Ollama (not recommended) |
Note: GPU is auto-detected and attached regardless of image choice.
Lifecycle Management
ujust openwebui start
ujust openwebui stop
ujust openwebui restart
ujust openwebui logs
ujust openwebui logs --lines=200
ujust openwebui logs -l 200
ujust openwebui status
ujust openwebui url
Multi-Instance Support
ujust openwebui start --instance=all
ujust openwebui start -n all
ujust openwebui stop --instance=2
ujust openwebui delete --instance=all
Shell Access
ujust openwebui shell
ujust openwebui shell -- ls -la /app/backend/data
ujust openwebui shell -- cat /app/backend/data/config.json
Network Architecture
Open WebUI uses the bazzite-ai bridge network for cross-container DNS:
+-------------------+ DNS +-------------------+
| Open WebUI | -----------> | Ollama |
| (openwebui) | | (ollama) |
| Port 3000 | | Port 11434 |
+-------------------+ +-------------------+
| |
+------ bazzite-ai network --------+
Environment Variables (injected automatically):
OLLAMA_BASE_URL=http://ollama:11434
OLLAMA_HOST=http://ollama:11434
JUPYTER_HOST=http://jupyter:8888
COMFYUI_HOST=http://comfyui:8188
Network Binding
| Bind Address | Access | Use Case |
|---|
127.0.0.1 | Localhost only | Default, secure |
0.0.0.0 | All interfaces | Network access, Tailscale |
Security Note: Using --bind=0.0.0.0 exposes the service to your network. Consider using Tailscale for secure remote access:
ujust tailscale serve --service=openwebui
Data Persistence
| Path | Description |
|---|
~/.config/openwebui/<INSTANCE>/data | Users, chats, settings |
Data persists across container restarts. Each instance has isolated data.
Common Workflows
Initial Setup
ujust ollama start
ujust openwebui config
ujust openwebui start
ujust openwebui url
Remote Access Setup
ujust openwebui config --bind=0.0.0.0
ujust openwebui start
ujust tailscale serve --service=openwebui
Upgrade Container Image
ujust openwebui stop
ujust openwebui config --image=ghcr.io/open-webui/open-webui:main
ujust openwebui start
GPU Support
GPU is automatically detected and attached:
| GPU Type | Detection | Quadlet Config |
|---|
| NVIDIA | nvidia-smi | AddDevice=nvidia.com/gpu=all |
| AMD | lspci | AddDevice=/dev/dri |
| Intel | lspci | AddDevice=/dev/dri |
Check GPU status:
ujust openwebui shell -- nvidia-smi
Troubleshooting
Service Won't Start
ujust openwebui status
ujust openwebui logs --lines=100
ujust ollama status
Common causes:
- Port 3000 already in use
- Ollama not running
- Container image not pulled
Can't Connect to Ollama
Symptom: "No models available" in web UI
Check:
ujust ollama status
ujust openwebui shell -- curl http://ollama:11434/api/tags
Fix:
ujust ollama start
ujust openwebui restart
Web UI Not Accessible
Symptom: Browser can't connect to http://localhost:3000
Check:
ujust openwebui status
ujust openwebui url
Fix:
ujust openwebui config --bind=127.0.0.1
ujust openwebui restart
Clear Data and Start Fresh
ujust openwebui delete --instance=all
ujust openwebui config
ujust openwebui start
Cross-References
- Required:
ollama (Ollama must be running for models)
- Related:
jupyter (ML development), comfyui (image generation)
- Network: Uses
bazzite-ai network (shared with ollama, jupyter, comfyui)
- Docs: Open WebUI GitHub
When to Use This Skill
Use when the user asks about:
- "install open webui", "setup chat interface", "web ui for ollama"
- "configure openwebui", "change port", "network access"
- "open webui not working", "can't see models", "connection error"
- "open webui logs", "debug open webui"
- "delete open webui", "uninstall"