mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-03 03:17:58 +08:00
增加 IYUU 版本
Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
parent
15adf333f0
commit
1cb0e24de0
@ -36,6 +36,11 @@ IYUU 是一个基于种子特征码的交叉索引工具
|
||||
>
|
||||
> 站点认证:请提前准备相应站点
|
||||
|
||||
### 版本选择
|
||||
|
||||
+ `latest` : 最新版本 (仅包含 IYUU 核心服务)
|
||||
+ `latest-mysql` : 最新版本 (包含 IYUU 核心服务 + MySQL 服务)
|
||||
|
||||
## 支持的下载器
|
||||
|
||||
+ [transmission](https://transmissionbt.com/)
|
||||
|
54
apps/iyuu-plus/latest-mysql/data.yml
Normal file
54
apps/iyuu-plus/latest-mysql/data.yml
Normal file
@ -0,0 +1,54 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/iyuuplus"
|
||||
edit: true
|
||||
envKey: IYUUCN_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 8780
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口 (Nginx)
|
||||
labelEn: WebUI port (Nginx)
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 8787
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_IYUU
|
||||
labelZh: WebUI 端口 (IYUU)
|
||||
labelEn: WebUI port (IYUU)
|
||||
required: false
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 3131
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WS
|
||||
labelZh: WebUI 端口 (WS)
|
||||
labelEn: WebUI port (WS)
|
||||
required: false
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CUSTOM_MOUNT_DIRECTORY_1
|
||||
labelEn: Custom mount directory 1
|
||||
labelZh: 自定义挂载目录 1
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CUSTOM_MOUNT_DIRECTORY_2
|
||||
labelEn: Custom mount directory 2
|
||||
labelZh: 自定义挂载目录 2
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CUSTOM_MOUNT_DIRECTORY_3
|
||||
labelEn: Custom mount directory 3
|
||||
labelZh: 自定义挂载目录 3
|
||||
required: false
|
||||
type: text
|
25
apps/iyuu-plus/latest-mysql/docker-compose.yml
Normal file
25
apps/iyuu-plus/latest-mysql/docker-compose.yml
Normal file
@ -0,0 +1,25 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
iyuuplus:
|
||||
image: iyuucn/iyuuplus:latest
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:8780
|
||||
- ${PANEL_APP_PORT_IYUU:-}:8787
|
||||
- ${PANEL_APP_PORT_WS:-}:3131
|
||||
volumes:
|
||||
- ${IYUUCN_ROOT_PATH}/iyuu:/iyuu
|
||||
- ${IYUUCN_ROOT_PATH}/data:/data
|
||||
- ${IYUUCN_ROOT_PATH}/qBittorrent:/qBittorrent
|
||||
- ${IYUUCN_ROOT_PATH}/transmission:/transmission
|
||||
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
|
||||
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
|
||||
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
|
2
apps/iyuu-plus/latest-mysql/envs/default.env
Normal file
2
apps/iyuu-plus/latest-mysql/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
apps/iyuu-plus/latest-mysql/envs/global.env
Normal file
2
apps/iyuu-plus/latest-mysql/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
10
apps/iyuu-plus/latest-mysql/scripts/init.sh
Normal file
10
apps/iyuu-plus/latest-mysql/scripts/init.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
10
apps/iyuu-plus/latest-mysql/scripts/uninstall.sh
Normal file
10
apps/iyuu-plus/latest-mysql/scripts/uninstall.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
10
apps/iyuu-plus/latest-mysql/scripts/upgrade.sh
Normal file
10
apps/iyuu-plus/latest-mysql/scripts/upgrade.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
@ -4,7 +4,7 @@ networks:
|
||||
|
||||
services:
|
||||
iyuuplus:
|
||||
image: iyuucn/iyuuplus-dev:latest
|
||||
image: iyuucn/iyuuplus-nodb:latest
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
Loading…
x
Reference in New Issue
Block a user