diff --git a/.github/README.md b/.github/README.md
index 9da24aa3d..00b9661c6 100644
--- a/.github/README.md
+++ b/.github/README.md
@@ -64,6 +64,7 @@
| 🟢 |
| Gitea | https://gitea.io/ | 私有、快速、可靠的 DevOps 平台 | Gitea |
| 🟢 |
| Gitea Runner | https://gitea.io/ | 【Runner】私有、快速、可靠的 DevOps 平台 | Gitea |
| 🟢 |
| Halo | https://halo.run/ | 强大易用的开源建站工具 | |
+| 🟢 |
| Homarr | https://homarr.dev/ | 一个时尚、现代化的仪表板 | |
| 🟢 |
| Iframely | https://iframely.com/ | 响应式 Web 嵌入和 URL 元的 Iframely API | |
| 🟢 |
| Immich | https://immich.app/ | 【完整版本】高性能自托管照片和视频管理解决方案 | Immich |
| 🟢 |
| Immich-Server | https://immich.app/ | 【主服务模块】高性能自托管照片和视频管理解决方案 | Immich |
@@ -146,6 +147,8 @@
> 以上排序不分先后,按照字母顺序排列。
>
> 维护状态:🟢 维护中 🔴 未维护 🟡 表示不定期维护
+
+
---
## 1Pane 导入应用商店
diff --git a/README.md b/README.md
index e01b5b0db..5c55236ac 100644
--- a/README.md
+++ b/README.md
@@ -59,6 +59,7 @@
| 🟢 |
| Gitea | https://gitea.io/ | 私有、快速、可靠的 DevOps 平台 | Gitea |
| 🟢 |
| Gitea Runner | https://gitea.io/ | 【Runner】私有、快速、可靠的 DevOps 平台 | Gitea |
| 🟢 |
| Halo | https://halo.run/ | 强大易用的开源建站工具 | |
+| 🟢 |
| Homarr | https://homarr.dev/ | 一个时尚、现代化的仪表板 | |
| 🟢 |
| Iframely | https://iframely.com/ | 响应式 Web 嵌入和 URL 元的 Iframely API | |
| 🟢 |
| Immich | https://immich.app/ | 【完整版本】高性能自托管照片和视频管理解决方案 | Immich |
| 🟢 |
| Immich-Server | https://immich.app/ | 【主服务模块】高性能自托管照片和视频管理解决方案 | Immich |
diff --git a/apps/homarr/0.15.7/data.yml b/apps/homarr/0.15.7/data.yml
new file mode 100644
index 000000000..d4f817f91
--- /dev/null
+++ b/apps/homarr/0.15.7/data.yml
@@ -0,0 +1,17 @@
+additionalProperties:
+ formFields:
+ - default: "/home/baota"
+ edit: true
+ envKey: BAOTA_ROOT_PATH
+ labelZh: 数据持久化路径
+ labelEn: Data persistence path
+ required: true
+ type: text
+ - default: 7575
+ edit: true
+ envKey: PANEL_APP_PORT_HTTP
+ labelZh: WebUI 端口
+ labelEn: WebUI port
+ required: true
+ rule: paramPort
+ type: number
diff --git a/apps/homarr/0.15.7/docker-compose.yml b/apps/homarr/0.15.7/docker-compose.yml
new file mode 100644
index 000000000..2d0f99524
--- /dev/null
+++ b/apps/homarr/0.15.7/docker-compose.yml
@@ -0,0 +1,22 @@
+networks:
+ 1panel-network:
+ external: true
+
+services:
+ baota:
+ image: ghcr.io/ajnart/homarr:0.15.7
+ container_name: ${CONTAINER_NAME}
+ labels:
+ createdBy: "Apps"
+ restart: always
+ network_mode: ${NETWORK_MODE}
+ ports:
+ - ${PANEL_APP_PORT_HTTP}:7575
+ env_file:
+ - ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
+ - ${ENV_FILE:-/etc/1panel/envs/default.env}
+ volumes:
+ - /var/run/docker.sock:/var/run/docker.sock
+ - ${HOMARR_ROOT_PATH}/configs:/app/data/configs
+ - ${HOMARR_ROOT_PATH}/icons:/app/public/icons
+ - ${HOMARR_ROOT_PATH}/data:/data
diff --git a/apps/homarr/0.15.7/envs/default.env b/apps/homarr/0.15.7/envs/default.env
new file mode 100644
index 000000000..cd05f46e6
--- /dev/null
+++ b/apps/homarr/0.15.7/envs/default.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+ENV_FILE=.env
diff --git a/apps/homarr/0.15.7/envs/global.env b/apps/homarr/0.15.7/envs/global.env
new file mode 100644
index 000000000..e10989fe4
--- /dev/null
+++ b/apps/homarr/0.15.7/envs/global.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+TZ=Asia/Shanghai
diff --git a/apps/homarr/0.15.7/scripts/init.sh b/apps/homarr/0.15.7/scripts/init.sh
new file mode 100644
index 000000000..07fb8c3fe
--- /dev/null
+++ b/apps/homarr/0.15.7/scripts/init.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/homarr/0.15.7/scripts/uninstall.sh b/apps/homarr/0.15.7/scripts/uninstall.sh
new file mode 100644
index 000000000..c86c4fbca
--- /dev/null
+++ b/apps/homarr/0.15.7/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/homarr/0.15.7/scripts/upgrade.sh b/apps/homarr/0.15.7/scripts/upgrade.sh
new file mode 100644
index 000000000..07fb8c3fe
--- /dev/null
+++ b/apps/homarr/0.15.7/scripts/upgrade.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/homarr/README.md b/apps/homarr/README.md
new file mode 100644
index 000000000..d3a9f9285
--- /dev/null
+++ b/apps/homarr/README.md
@@ -0,0 +1,33 @@
+# homarr
+
+一个时尚、现代化的仪表板
+
+
+
+
+
+## 特性
+
+🖌️ 通过广泛的拖放网格系统进行高度可定制
+
+✨ 与您最喜欢的自托管应用程序无缝集成
+
+📌 简单快速的应用程序管理 - 不涉及 YAML
+
+🙊 先进的机密管理系统,增强安全性
+
+📄 详细的文档和活跃的社区
+
+🔍 立即搜索网络或支持的集成
+
+🏴§筛选偢筛选偮筛选偩筛选偲筛选偿使用内置状态系统监控您的应用程序
+
+🦞 全面的内置图标选择器,包含 7000 多个图标
+
+🐳 使用 Docker、unRAID 和 Synology 轻松部署
+
+🚀 与任何主要消费类硬件兼容(x86、Raspberry Pi、旧笔记本电脑......)
+
+---
+
+
diff --git a/apps/homarr/data.yml b/apps/homarr/data.yml
new file mode 100644
index 000000000..1c57a4436
--- /dev/null
+++ b/apps/homarr/data.yml
@@ -0,0 +1,14 @@
+additionalProperties:
+ key: homarr
+ name: Homarr
+ tags:
+ - WebSite
+ - Local
+ shortDescZh: 一个时尚、现代化的仪表板
+ shortDescEn: A stylish, modern dashboard
+ type: website
+ crossVersionUpdate: true
+ limit: 0
+ website: https://homarr.dev/
+ github: https://github.com/ajnart/homarr/
+ document: https://homarr.dev/
diff --git a/apps/homarr/logo.png b/apps/homarr/logo.png
new file mode 100644
index 000000000..d76809e30
Binary files /dev/null and b/apps/homarr/logo.png differ