1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-08-10 22:31:28 +02:00

add open-webui

This commit is contained in:
kevin
2025-03-09 09:09:43 +08:00
parent 4082f8c9eb
commit 604285355d
3 changed files with 25 additions and 0 deletions

View File

@@ -474,6 +474,7 @@ A collection of delicious docker recipes.
- [x] openresty/openresty
- [x] opensearchproject/opensearch :bucket:
- [x] kylemanna/openvpn
- [x] ghcr.io/open-webui/open-webui
- [x] campbellsoftwaresolutions/osticket
- [x] outlinewiki/outline
- [x] gabekangas/owncast

9
open-webui/README.md Normal file
View File

@@ -0,0 +1,9 @@
open-webui
==========
[Open WebUI][1] is an extensible, feature-rich, and user-friendly self-hosted
AI platform designed to operate entirely offline. It supports various LLM
runners like Ollama and OpenAI-compatible APIs, with built-in inference engine
for RAG, making it a powerful AI deployment solution.
[1]: https://github.com/open-webui/open-webui

View File

@@ -0,0 +1,15 @@
services:
open-webui:
image: ghcr.io/open-webui/open-webui:main
volumes:
- ./data:/app/backend/data
ports:
- "3000:8080"
environment:
- HF_HUB_OFFLINE=1
- WEBUI_SECRET_KEY=t0p-s3cr3t
- OLLAMA_BASE_URL=http://ollama:11434
# OPENAI_API_KEY=sk-xxxxxx
extra_hosts:
- ollama:x.x.x.x
restart: unless-stopped