Synced apps from source repository via GitHub Actions

This commit is contained in:
QYG2297248353
2025-02-28 03:26:52 +00:00
parent c3c99db874
commit f41b39ef87
58 changed files with 8 additions and 8 deletions
+9
View File
@@ -0,0 +1,9 @@
# 数据持久化路径 [必填]
QINGLONG_ROOT_PATH=/home/qinglong
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=5700
# 部署路径
QINGLONG_BASE_URL=/
+24
View File
@@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: "/home/qinglong"
edit: true
envKey: QINGLONG_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 5700
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI Port
required: true
rule: paramPort
type: number
- default: "/"
edit: true
envKey: QINGLONG_BASE_URL
labelZh: 部署路径
labelEn: Deployment path
required: false
type: text
+19
View File
@@ -0,0 +1,19 @@
networks:
1panel-network:
external: true
services:
qinglong:
container_name: qinglong
environment:
- QlPort=5700
- QlBaseUrl=${QINGLONG_BASE_URL:-/}
image: whyour/qinglong:2.18.2
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP:-5700}:5700
restart: always
volumes:
- ${QINGLONG_ROOT_PATH}/data:/ql/data
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
+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
+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
+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