Overview
- Full name
docker.io/typ431127/open-webui- Registry
- docker.io
- Namespace
- typ431127
- Repository
- open-webui
- Cached tags
- 4
- Last synced
- 07/05/2026, 08:42 AM
- Topics
Introduction
Open WebUI 镜像(typ431127),Ollama/LLM 聊天 Web 界面,本地大模型对话与 RAG 知识库管理前端。
Details
typ431127/open-webui 运行 Open WebUI 开源 LLM 聊天界面,对接 Ollama/OpenAI 等后端,支持对话、RAG 文档上传与多模型切换。定位为 LLM 聊天 Web UI;本地 Ollama 可视化、团队 LLM 对话门户或私有化 ChatGPT 替代前端。
快速启动
docker run -d --name open-webui \
-p 3000:8080 \
-e OLLAMA_BASE_URL=http://ollama:11434 \
docker.io/typ431127/open-webui:latest
推荐实践
docker run -d --name open-webui \
--restart unless-stopped \
-p 3000:8080 \
-e OLLAMA_BASE_URL=http://ollama:11434 \
-v /data/open-webui:/app/backend/data \
docker.io/typ431127/open-webui:latest
核心参数说明
-p 3000:8080— Open WebUI 端口OLLAMA_BASE_URL— Ollama 后端地址-v .../data:...— 对话与 RAG 数据- 配对 — Ollama 或 OpenAI API
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: open-webui
spec:
replicas: 1
selector:
matchLabels:
app: open-webui
template:
metadata:
labels:
app: open-webui
spec:
containers:
- name: open-webui
image: docker.io/typ431127/open-webui:latest
ports:
- containerPort: 8080
env:
- name: OLLAMA_BASE_URL
value: http://ollama:11434
volumeMounts:
- name: data
mountPath: /app/backend/data
volumes:
- name: data
persistentVolumeClaim:
claimName: open-webui-data
---
apiVersion: v1
kind: Service
metadata:
name: open-webui
spec:
selector:
app: open-webui
ports:
- port: 8080
targetPort: 8080
Ingress 暴露聊天 UI;PVC 存数据。
Latest tags (20)
View all 4 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/typ431127/open-webui :0.3.12 | linux/amd64 | 2024/08/08 13:36 | 1.3 GB | sha256:c999eba68cc3… | |||
docker.io/typ431127/open-webui :0.3.10 | linux/amd64 | 2024/07/30 14:55 | 1.3 GB | sha256:cbc00c7fd6d7… | |||
docker.io/typ431127/open-webui :v0.3.8 | linux/amd64 | 2024/07/16 13:22 | 1.2 GB | sha256:b28667084e80… | |||
docker.io/typ431127/open-webui :v0.3.5 | linux/amd64 | 2024/06/24 14:07 | 1.2 GB | sha256:d2cdc9c2e399… |