mirror of
https://github.com/QYG2297248353/appstore-dpanel
synced 2025-03-04 12:14:26 +08:00
Synced apps from source repository via GitHub Actions
This commit is contained in:
parent
d374b7dcfd
commit
3ff61bea70
@ -36,6 +36,11 @@ IYUU 是一个基于种子特征码的交叉索引工具
|
||||
>
|
||||
> 站点认证:请提前准备相应站点
|
||||
|
||||
### 版本选择
|
||||
|
||||
+ `latest` : 最新版本 (仅包含 IYUU 核心服务)
|
||||
+ `latest-mysql` : 最新版本 (包含 IYUU 核心服务 + MySQL 服务)
|
||||
|
||||
## 支持的下载器
|
||||
|
||||
+ [transmission](https://transmissionbt.com/)
|
||||
|
21
apps/iyuu-plus/latest-mysql/.env
Normal file
21
apps/iyuu-plus/latest-mysql/.env
Normal file
@ -0,0 +1,21 @@
|
||||
# 数据持久化路径 [必填]
|
||||
IYUUCN_ROOT_PATH=/home/iyuuplus
|
||||
|
||||
# WebUI 端口 (Nginx) [必填]
|
||||
PANEL_APP_PORT_HTTP=8780
|
||||
|
||||
# WebUI 端口 (IYUU)
|
||||
PANEL_APP_PORT_IYUU=8787
|
||||
|
||||
# WebUI 端口 (WS)
|
||||
PANEL_APP_PORT_WS=3131
|
||||
|
||||
# 自定义挂载目录 1
|
||||
CUSTOM_MOUNT_DIRECTORY_1=
|
||||
|
||||
# 自定义挂载目录 2
|
||||
CUSTOM_MOUNT_DIRECTORY_2=
|
||||
|
||||
# 自定义挂载目录 3
|
||||
CUSTOM_MOUNT_DIRECTORY_3=
|
||||
|
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
|
24
apps/iyuu-plus/latest-mysql/docker-compose.yml
Normal file
24
apps/iyuu-plus/latest-mysql/docker-compose.yml
Normal file
@ -0,0 +1,24 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
iyuuplus:
|
||||
container_name: iyuu-plus
|
||||
image: iyuucn/iyuuplus:latest
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:8780
|
||||
- ${PANEL_APP_PORT_IYUU:-}:8787
|
||||
- ${PANEL_APP_PORT_WS:-}:3131
|
||||
restart: always
|
||||
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:
|
||||
container_name: iyuu-plus
|
||||
image: iyuucn/iyuuplus-dev:latest
|
||||
image: iyuucn/iyuuplus-nodb:latest
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
Loading…
x
Reference in New Issue
Block a user