You've already forked dockerfiles
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:
@@ -474,6 +474,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] openresty/openresty
|
- [x] openresty/openresty
|
||||||
- [x] opensearchproject/opensearch :bucket:
|
- [x] opensearchproject/opensearch :bucket:
|
||||||
- [x] kylemanna/openvpn
|
- [x] kylemanna/openvpn
|
||||||
|
- [x] ghcr.io/open-webui/open-webui
|
||||||
- [x] campbellsoftwaresolutions/osticket
|
- [x] campbellsoftwaresolutions/osticket
|
||||||
- [x] outlinewiki/outline
|
- [x] outlinewiki/outline
|
||||||
- [x] gabekangas/owncast
|
- [x] gabekangas/owncast
|
||||||
|
9
open-webui/README.md
Normal file
9
open-webui/README.md
Normal 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
|
15
open-webui/docker-compose.yml
Normal file
15
open-webui/docker-compose.yml
Normal 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
|
Reference in New Issue
Block a user