1
0
Fork 0

Release devfox101 version as a standalone application

This commit is contained in:
pooneyy 2025-08-27 15:40:39 +08:00
parent b077571006
commit 5caac53e9c
No known key found for this signature in database
10 changed files with 78 additions and 12 deletions

View File

@ -0,0 +1,19 @@
services:
mt-photos-ai:
image: "devfox101/mt-photos-ai:1.4.0"
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8060"
environment:
- API_AUTH_KEY=${API_AUTH_KEY}
devices:
- "/dev/dri:/dev/dri"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true

View File

@ -0,0 +1,16 @@
# MT Photos AI 识别相关任务独立部署项目
- 基于PaddleOCR实现的文本识别(OCR)接口
- 基于Chinese-CLIPOpenAI CLIP模型的中文版本实现的图片、文本提取特征接口
## devfox101 版
- `devfox101/mt-photos-ai`
合并了 `mt-photos-ai``mt-photos-insightface-unofficial` 2 个镜像的代码,运行这一个镜像就可以支持以上 2 个镜像的功能
- 如果在添加智能识别 API 和人脸识别 API 时,需要调用 Intel 核显来加速处理;可以使用 devfox101/mt-photos-ai 镜像,并给容器映射/dev/dri
```yml
devices:
- "/dev/dri:/dev/dri"
```

View File

@ -0,0 +1,21 @@
name: MT Photos AI
tags:
- 多媒体
- AI / 大模型
title: MT Photos AI 相关的独立服务
description: MT Photos AI 相关的独立服务
additionalProperties:
key: mt-photos-ai
name: MT Photos AI
tags:
- Media
- AI
shortDescZh: MT Photos AI 相关的独立服务
shortDescEn: MT Photos AI-related standalone services
type: tool
crossVersionUpdate: true
limit: 0
recommend: 0
website: https://mtmt.tech
github: https://github.com/MT-Photos/mt-photos-ai
document: https://mtmt.tech

View File

@ -0,0 +1,3 @@
API_AUTH_KEY="mt_photos_ai_extra"
CONTAINER_NAME="mt-photos-ai"
PANEL_APP_PORT_HTTP=8060

View File

@ -0,0 +1,19 @@
additionalProperties:
formFields:
- default: "8060"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: "mt_photos_ai_extra"
edit: true
envKey: API_AUTH_KEY
labelEn: API Auth Key
labelZh: API 授权密钥
random: true
required: true
rule: paramComplexity
type: password

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -2,15 +2,3 @@
- 基于PaddleOCR实现的文本识别(OCR)接口
- 基于Chinese-CLIPOpenAI CLIP模型的中文版本实现的图片、文本提取特征接口
## 镜像
- `devfox101/mt-photos-ai:latest`
合并了 `mt-photos-ai``mt-photos-insightface-unofficial` 2 个镜像的代码,运行这一个镜像就可以支持以上 2 个镜像的功能
- 如果在添加智能识别 API 和人脸识别 API 时,需要调用 Intel 核显来加速处理;可以使用 devfox101/mt-photos-ai:latest 镜像,并给容器映射/dev/dri
```yml
devices:
- "/dev/dri:/dev/dri"
```