Skip to content

Open WebUI

Open WebUI 是一个用于管理和交互本地或远程 AI 模型(如 LLM)的开源 Web 界面。它旨在提供一个用户友好的平台,方便用户使用各种大型语言模型。 它可用于个人研究、开发 AI 应用、教育以及其他需要与大型语言模型交互的场景。

key concepts:

Install

Install the ollama model and use GPU by default:

shell
docker run \
-d \
--restart unless-stopped \
-p 3000:8080 \
--gpus=all \
-v ollama:/root/.ollama \
-v /d/data/open-webui:/app/backend/data \
--name open-webui \
ghcr.io/open-webui/open-webui:ollama

Install the latest main tag:

shell
mkdir -p /d/data/open-webui

docker pull ghcr.io/open-webui/open-webui:main

docker run \
-d \
--restart unless-stopped \
-p 3000:8080 \
-v /d/data/open-webui:/app/backend/data \
--name open-webui \
ghcr.io/open-webui/open-webui:main

Install the dev instead of main tag:

shell
docker run \
-d \
--restart unless-stopped \
-p 3000:8080 \
-v /d/data/open-webui:/app/backend/data \
--name open-webui \
ghcr.io/open-webui/open-webui:git-2de0349

See also:

Released under the CC-BY-NC-4.0