diff --git a/.github/README.md b/.github/README.md
index de95ae9f4..6079c8887 100644
--- a/.github/README.md
+++ b/.github/README.md
@@ -153,6 +153,7 @@
| 🟢 |
| Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 |
| Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 |
| 唐僧叨叨 | https://tsdaodao.com/ | 让企业轻松拥有自己的即时通讯 | |
+| 🟢 |
| Teemii | https://www.teemii.io/ | 漫画阅读器和管理器 | |
| 🟢 |
| Telegram Bot Api | https://telegram.org/ | 自建 Telegram Bot API 服务器 | |
| 🟢 |
| Traccar 轨迹 | https://www.traccar.org/ | 现代 GPS 追踪系统 | |
| 🟢 |
| Transmission | https://transmissionbt.com/ | 快速、简单、免费的 Bittorrent 客户端 | |
diff --git a/README.md b/README.md
index b10c29316..5d094e128 100644
--- a/README.md
+++ b/README.md
@@ -136,6 +136,7 @@
| 🟢 |
| Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 |
| Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 |
| 唐僧叨叨 | https://tsdaodao.com/ | 让企业轻松拥有自己的即时通讯 | |
+| 🟢 |
| Teemii | https://www.teemii.io/ | 漫画阅读器和管理器 | |
| 🟢 |
| Telegram Bot Api | https://telegram.org/ | 自建 Telegram Bot API 服务器 | |
| 🟢 |
| Traccar 轨迹 | https://www.traccar.org/ | 现代 GPS 追踪系统 | |
| 🟢 |
| Transmission | https://transmissionbt.com/ | 快速、简单、免费的 Bittorrent 客户端 | |
diff --git a/apps/teemii/0.8.2/data.yml b/apps/teemii/0.8.2/data.yml
new file mode 100644
index 000000000..62a715584
--- /dev/null
+++ b/apps/teemii/0.8.2/data.yml
@@ -0,0 +1,24 @@
+additionalProperties:
+ formFields:
+ - default: "/home/teemii"
+ edit: true
+ envKey: TEEMII_ROOT_PATH
+ labelZh: 数据持久化路径
+ labelEn: Data persistence path
+ required: true
+ type: text
+ - default: 8080
+ edit: true
+ envKey: PANEL_APP_PORT_HTTP
+ labelZh: 访问端口
+ labelEn: Port
+ required: true
+ rule: paramPort
+ type: number
+ - default: "Teemii"
+ edit: true
+ envKey: VITE_APP_TITLE
+ labelZh: 网站标题
+ labelEn: Website Title
+ required: true
+ type: text
diff --git a/apps/teemii/0.8.2/docker-compose.yml b/apps/teemii/0.8.2/docker-compose.yml
new file mode 100644
index 000000000..1cbddee8d
--- /dev/null
+++ b/apps/teemii/0.8.2/docker-compose.yml
@@ -0,0 +1,36 @@
+networks:
+ 1panel-network:
+ external: true
+
+services:
+ teemii-frontend:
+ image: dokkaner/teemii-frontend:0.8.2
+ container_name: frontend-${CONTAINER_NAME}
+ labels:
+ createdBy: "Apps"
+ restart: always
+ networks:
+ - 1panel-network
+ ports:
+ - ${PANEL_APP_PORT_HTTP}:80
+ env_file:
+ - /etc/1panel/envs/global.env
+ - ${ENV_FILE:-/etc/1panel/envs/default.env}
+ environment:
+ - VITE_APP_PORT=80
+ teemii-backend:
+ image: dokkaner/teemii-backend:0.8.2
+ container_name: backend-${CONTAINER_NAME}
+ labels:
+ createdBy: "Apps"
+ restart: always
+ networks:
+ - 1panel-network
+ env_file:
+ - /etc/1panel/envs/global.env
+ - ${ENV_FILE:-/etc/1panel/envs/default.env}
+ volumes:
+ - ${TEEMII_ROOT_PATH}/data:/data
+ environment:
+ - EXPRESS_PORT=3000
+ - SOCKET_IO_PORT=1555
diff --git a/apps/teemii/0.8.2/scripts/init.sh b/apps/teemii/0.8.2/scripts/init.sh
new file mode 100644
index 000000000..77b849120
--- /dev/null
+++ b/apps/teemii/0.8.2/scripts/init.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/teemii/0.8.2/scripts/uninstall.sh b/apps/teemii/0.8.2/scripts/uninstall.sh
new file mode 100644
index 000000000..c86c4fbca
--- /dev/null
+++ b/apps/teemii/0.8.2/scripts/uninstall.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/teemii/0.8.2/scripts/upgrade.sh b/apps/teemii/0.8.2/scripts/upgrade.sh
new file mode 100644
index 000000000..77b849120
--- /dev/null
+++ b/apps/teemii/0.8.2/scripts/upgrade.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/teemii/README.md b/apps/teemii/README.md
new file mode 100644
index 000000000..89a7f2e7a
--- /dev/null
+++ b/apps/teemii/README.md
@@ -0,0 +1,28 @@
+# Teemiio
+
+多功能,自托管的漫画阅读器和管理器,具有可扩展的基于代理的元数据检索
+
+
+
+
+
+## 简介
+
+Teemii 是为热衷漫画阅读者设计的精简网络应用。它提供了一个简单高效、用于阅读和管理漫画收藏的平台。
+主要功能包括跨平台访问、浏览器内阅读、强大的元数据聚合器以及自动更新您的收藏。
+
+## 特性
+
++ 直观用户界面:Teemii 拥有用户友好的界面,使导航和互动变得轻松,从而提升整体用户体验。
++ 原始漫画存档存储:自行托管漫画。
++ 跨平台兼容性:无论您想在哪里部署,都可以在各种设备上访问。
++ 可定制的浏览器内漫画阅读:直接在网页浏览器中阅读漫画,无需额外软件。
++ CBZ 和 CBR 格式支持:导入和管理流行的漫画格式。
++ 自动阅读进度跟踪:无缝追踪阅读进度。
++ 全面元数据聚合:每部漫画的详细信息
++ 个性化漫画推荐:根据阅读习惯建议新标题。
++ 多用途章节获取:从多个在线资源获取漫画章节。
+
+---
+
+
diff --git a/apps/teemii/data.yml b/apps/teemii/data.yml
new file mode 100644
index 000000000..b6120e3ee
--- /dev/null
+++ b/apps/teemii/data.yml
@@ -0,0 +1,14 @@
+additionalProperties:
+ key: teemii
+ name: Teemii
+ tags:
+ - WebSite
+ - Local
+ shortDescZh: 漫画阅读器和管理器
+ shortDescEn: Comic reader and manager
+ type: website
+ crossVersionUpdate: true
+ limit: 0
+ website: https://www.teemii.io/
+ github: https://github.com/dokkaner/teemii/
+ document: https://docs.teemii.io/
diff --git a/apps/teemii/logo.png b/apps/teemii/logo.png
new file mode 100644
index 000000000..734c634df
Binary files /dev/null and b/apps/teemii/logo.png differ