Overview
- Full name
docker.io/ryanthetourist/chat-ollama- Registry
- docker.io
- Namespace
- ryanthetourist
- Repository
- chat-ollama
- Cached tags
- 1
- Last synced
- 07/06/2026, 02:14 AM
- Topics
Introduction
Chat Ollama Web 对话镜像,浏览器聊天界面连接 Ollama 本地大模型,自托管 LLM 对话前端。
Details
ryanthetourist/chat-ollama 运行 Chat Ollama Web 对话前端,浏览器 UI 连接 Ollama API 与本地大模型对话。定位为 Ollama 对话 Web 应用,需 Ollama 后端服务;K8s Deployment 内网 LLM 对话界面。
快速启动
docker run -d --name chat-ollama \
-p 3000:3000 \
-e OLLAMA_BASE_URL=http://ollama:11434 \
docker.io/ryanthetourist/chat-ollama:latest
推荐实践
docker run -d --name chat-ollama \
--restart unless-stopped \
-p 3000:3000 \
-e OLLAMA_BASE_URL=http://ollama.internal:11434 \
docker.io/ryanthetourist/chat-ollama:1.0.0
核心参数说明
-p 3000:3000— Chat Web UI-e OLLAMA_BASE_URL— Ollama API 地址- 依赖 — Ollama 推理后端
- 模型 — 由 Ollama 加载管理
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: chat-ollama
spec:
replicas: 1
selector:
matchLabels:
app: chat-ollama
template:
metadata:
labels:
app: chat-ollama
spec:
containers:
- name: chat
image: docker.io/ryanthetourist/chat-ollama:1.0.0
ports:
- containerPort: 3000
env:
- name: OLLAMA_BASE_URL
value: http://ollama:11434
---
apiVersion: v1
kind: Service
metadata:
name: chat-ollama
spec:
selector:
app: chat-ollama
ports:
- port: 3000
targetPort: 3000
Ollama GPU 节点 Deployment 后端;Ingress 内网对话访问。
Latest tags (20)
View all 1 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/ryanthetourist/chat-ollama :latest | linux/amd64 | 2024/03/08 05:59 | 217.4 MB | sha256:02ab167f0552… |