mirror of
https://github.com/QYG2297248353/appstore-dpanel
synced 2025-12-29 08:01:36 +08:00
Synced apps from source repository via GitHub Actions
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
# 数据持久化路径 [必填]
|
||||
MINIO_ROOT_PATH=/home/minio
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=9001
|
||||
|
||||
# API 端口 (映射内部端口) [必填]
|
||||
PANEL_APP_PORT_API=9000
|
||||
|
||||
# API 内部端口 [必填]
|
||||
MINIO_API_PORT=9000
|
||||
|
||||
# 管理员 用户名 [必填]
|
||||
MINIO_ROOT_USER=minio
|
||||
|
||||
# 管理员 密码 [必填]
|
||||
MINIO_ROOT_PASSWORD=
|
||||
|
||||
# 启用 WebUI [必填]
|
||||
MINIO_BROWSER=on
|
||||
|
||||
# WebUI 登录动画 [必填]
|
||||
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
|
||||
|
||||
# WebUI 重定向 URL [必填]
|
||||
MINIO_BROWSER_REDIRECT_URL=http://127.0.0.1:9001
|
||||
|
||||
@@ -0,0 +1,103 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/minio"
|
||||
edit: true
|
||||
envKey: MINIO_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 9001
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- 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
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "minio"
|
||||
edit: true
|
||||
envKey: MINIO_ROOT_USER
|
||||
labelZh: 管理员 用户名
|
||||
labelEn: Root User
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: MINIO_ROOT_PASSWORD
|
||||
labelZh: 管理员 密码
|
||||
labelEn: Root Password
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: "on"
|
||||
edit: true
|
||||
envKey: MINIO_BROWSER
|
||||
labelEn: Enable WebUI
|
||||
labelZh: 启用 WebUI
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 开启
|
||||
value: "on"
|
||||
- label: 关闭
|
||||
value: "off"
|
||||
- default: "on"
|
||||
edit: true
|
||||
envKey: MINIO_BROWSER_LOGIN_ANIMATION
|
||||
labelEn: WebUI login animation
|
||||
labelZh: WebUI 登录动画
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 开启
|
||||
value: "on"
|
||||
- label: 关闭
|
||||
value: "off"
|
||||
- default: "12h"
|
||||
edit: true
|
||||
envKey: MINIO_BROWSER_SESSION_DURATION
|
||||
labelEn: Session duration
|
||||
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
|
||||
labelZh: API 域名
|
||||
labelEn: API Hostname
|
||||
required: true
|
||||
type: text
|
||||
- default: "http://127.0.0.1:9001"
|
||||
edit: true
|
||||
envKey: MINIO_BROWSER_REDIRECT_URL
|
||||
labelZh: WebUI 重定向 URL
|
||||
labelEn: WebUI Redirect URL
|
||||
rule: paramExtUrl
|
||||
required: true
|
||||
type: text
|
||||
@@ -0,0 +1,34 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
minio:
|
||||
command: server --console-address :${PANEL_APP_PORT_HTTP} --address :${MINIO_API_PORT}
|
||||
--json
|
||||
container_name: minio
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- MINIO_VOLUMES=/data
|
||||
- MINIO_API_ROOT_ACCESS=on
|
||||
- MINIO_BROWSER_REDIRECT=true
|
||||
extra_hosts:
|
||||
- ${MINIO_SERVER_HOST:-localhost}:127.0.0.1
|
||||
image: qyg2297248353/minio:RELEASE.2025-04-22T22-12-26Z
|
||||
labels:
|
||||
createdBy: Apps
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-file: '10'
|
||||
max-size: 5M
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||
- ${PANEL_APP_PORT_API}:${MINIO_API_PORT}
|
||||
restart: always
|
||||
volumes:
|
||||
- ${MINIO_ROOT_PATH}/certs:/root/.minio/certs
|
||||
- ${MINIO_ROOT_PATH}/data:/data
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .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
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -6,6 +6,16 @@ MinIO 是一种高性能、S3 兼容的对象存储。它是为大规模 AI/ML
|
||||
|
||||

|
||||
|
||||
<div style="border: 1px solid #FFC107; padding: 10px; border-radius: 5px; color: #856404; background-color: #FFF3CD; display: inline-block; width: 100%; max-width: 60%; margin-top: 10px;">
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span style="font-size: 24px; margin-right: 8px;">⚠️</span>
|
||||
<div>
|
||||
<strong style="font-size: 16px;">温馨提示</strong><br>
|
||||
<span style="font-size: 14px; color: #333;">该软件由于违背开源协议,自2025-04-22后,不在提供管理界面服务,仅保留文件浏览,请谨慎使用。</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
## 特性
|
||||
|
||||
+ 简单
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@
|
||||
shortDescZh: 开源的对象存储服务器
|
||||
shortDescEn: Open source object storage server
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
crossVersionUpdate: false
|
||||
limit: 0
|
||||
website: https://min.io/
|
||||
github: https://github.com/minio/minio/
|
||||
|
||||
Reference in New Issue
Block a user