feat: add opencut/io-paint/clash

This commit is contained in:
Sun-ZhenXing
2025-09-26 09:16:53 +08:00
parent 0b74e7bbe8
commit ed43eef637
17 changed files with 231 additions and 11 deletions

View File

@@ -13,8 +13,8 @@ This service deploys Open WebUI, a web-based interface for LLMs.
## Configuration
- `OPEN_WEBUI_VERSION`: The version of the Open WebUI image, default is `main`.
- `OPEN_WEBUI_PORT`: The host port for Open WebUI, default is `8080`.
- `OPEN_WEBUI_PORT_OVERRIDE`: The host port for Open WebUI, default is `8080`.
## Volumes
- `open-webui`: A volume for storing Open WebUI data.
- `open_webui_data`: A volume for storing Open WebUI data.

View File

@@ -13,8 +13,8 @@
## 配置
- `OPEN_WEBUI_VERSION`: Open WebUI 镜像的版本,默认为 `main`
- `OPEN_WEBUI_PORT`: Open WebUI 的主机端口,默认为 `8080`
- `OPEN_WEBUI_PORT_OVERRIDE`: Open WebUI 的主机端口,默认为 `8080`
## 卷
- `open-webui`: 用于存储 Open WebUI 数据的卷。
- `open_webui_data`: 用于存储 Open WebUI 数据的卷。

View File

@@ -9,15 +9,15 @@ x-default: &default
max-size: 100m
services:
openwebui:
open_webui:
<<: *default
image: ghcr.io/open-webui/open-webui:${OPEN_WEBUI_VERSION:-main}
ports:
- "${OPEN_WEBUI_PORT:-8080}:8080"
- "${OPEN_WEBUI_PORT_OVERRIDE:-8080}:8080"
volumes:
- *localtime
- *timezone
- open-webui:/app/backend/data
- open_webui_data:/app/backend/data
env_file:
- .env
deploy:
@@ -30,4 +30,4 @@ services:
memory: 128M
volumes:
open-webui:
open_webui_data: