提交合并

Signed-off-by: 萌森 <qyg2297248353@163.com>
This commit is contained in:
2024-07-17 16:30:13 +08:00
committed by qyg2297248353
commit 6c18fe434d
449 changed files with 21391 additions and 0 deletions
+54
View 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
+27
View File
@@ -0,0 +1,27 @@
version: "3.8"
networks:
1panel-network:
external: true
services:
iyuuplus:
image: iyuucn/iyuuplus-dev: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}
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi