Merge pull request #6655 from yipfram/service/lobe-ai-chat

feat(templates): added Lobe Chat service
This commit is contained in:
Andras Bacsai 2025-10-13 13:34:18 +02:00 committed by GitHub
commit 4092100cce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 22 additions and 0 deletions

BIN
public/svgs/lobe-chat.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 KiB

View file

@ -0,0 +1,22 @@
# documentation: https://github.com/lobehub/lobe-chat?tab=readme-ov-file#b-deploying-with-docker
# slogan: An open-source, modern-design AI chat framework.
# category: ai
# tags: ai, chat, openai, llm, chatbot
# logo: svgs/lobe-chat.png
# port: 3210
services:
lobe-chat:
image: "lobehub/lobe-chat:1.135.5"
environment:
- SERVICE_URL_LOBECHAT_3210
- OPENAI_API_KEY=${OPENAI_API_KEY}
- OPENAI_PROXY_URL=${OPENAI_BASE_URL:-https://api.openai.com/v1}
- ACCESS_CODE=${SERVICE_PASSWORD_ACCESSCODE}
healthcheck:
test:
- CMD-SHELL
- "wget -qO- http://localhost:3210/ || exit 1"
interval: 5s
timeout: 20s
retries: 10