Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-08-14 06:34:51 +00:00
parent 16df6802d5
commit 874195215b
11 changed files with 16 additions and 58 deletions
+1 -7
View File
@@ -4,12 +4,9 @@ MINIO_ROOT_PATH=/home/minio
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=9001
# API 端口 (映射内部端口) [必填]
# API 端口 [必填]
PANEL_APP_PORT_API=9000
# API 内部端口 [必填]
MINIO_API_PORT=9000
# 管理员 用户名 [必填]
MINIO_ROOT_USER=minio
@@ -25,9 +22,6 @@ MINIO_BROWSER_LOGIN_ANIMATION=on
# 会话持续时间 (s/秒 m/分钟 h/小时 d/天) [必填]
MINIO_BROWSER_SESSION_DURATION=12h
# API 服务器 URL [必填]
MINIO_SERVER_URL=http://127.0.0.1:9000
# API 域名 [必填]
MINIO_SERVER_HOST=localhost
+2 -18
View File
@@ -18,16 +18,8 @@ additionalProperties:
- default: 9000
edit: true
envKey: PANEL_APP_PORT_API
labelZh: API 端口 (映射内部端口)
labelEn: API Port (mapped internal port)
required: true
rule: paramPort
type: number
- default: 9000
edit: true
envKey: MINIO_API_PORT
labelZh: API 内部端口
labelEn: Internal API Port
labelZh: API 端口
labelEn: API Port
required: true
rule: paramPort
type: number
@@ -78,14 +70,6 @@ additionalProperties:
labelZh: 会话持续时间 (s/秒 m/分钟 h/小时 d/天)
required: true
type: text
- default: "http://127.0.0.1:9000"
edit: true
envKey: MINIO_SERVER_URL
labelZh: API 服务器 URL
labelEn: API Server URL
rule: paramExtUrl
required: true
type: text
- default: "localhost"
edit: true
envKey: MINIO_SERVER_HOST
+2 -2
View File
@@ -3,7 +3,7 @@ networks:
external: true
services:
minio:
command: server --console-address :${PANEL_APP_PORT_HTTP} --address :${MINIO_API_PORT}
command: server --console-address :${PANEL_APP_PORT_HTTP} --address :${PANEL_APP_PORT_API}
--json
container_name: minio
env_file:
@@ -27,7 +27,7 @@ services:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
- ${PANEL_APP_PORT_API}:${MINIO_API_PORT}
- ${PANEL_APP_PORT_API}:${PANEL_APP_PORT_API}
restart: always
volumes:
- ${MINIO_ROOT_PATH}/certs:/root/.minio/certs