mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
@@ -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,35 @@
|
||||
version: "3.8"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
minio:
|
||||
image: minio/minio:RELEASE.2024-06-11T03-13-30Z
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||
- ${PANEL_APP_PORT_API}:${MINIO_API_PORT}
|
||||
command: server --console-address :${PANEL_APP_PORT_HTTP} --address :${MINIO_API_PORT} --json
|
||||
environment:
|
||||
- MINIO_VOLUMES=/data
|
||||
- MINIO_API_ROOT_ACCESS=on
|
||||
- MINIO_BROWSER_REDIRECT=true
|
||||
env_file:
|
||||
- .env
|
||||
extra_hosts:
|
||||
- ${MINIO_SERVER_HOST:-localhost}:127.0.0.1
|
||||
volumes:
|
||||
- ${MINIO_ROOT_PATH}/certs:/root/.minio/certs
|
||||
- ${MINIO_ROOT_PATH}/data:/data
|
||||
logging:
|
||||
options:
|
||||
max-size: "5M"
|
||||
max-file: "10"
|
||||
driver: json-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
|
||||
@@ -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,66 @@
|
||||
# MinIO
|
||||
|
||||
MinIO 是一种高性能、S3 兼容的对象存储。它是为大规模 AI/ML、数据湖和数据库工作负载。它是软件定义的并在任何云或本地基础设施上运行。
|
||||
|
||||

|
||||
|
||||
## 特性
|
||||
|
||||
+ 简单
|
||||
|
||||
简单性是百亿亿次数据基础设施的基础——无论是技术上还是操作上。没有其他对象存储可以让您在更短的时间内从下载到生产。
|
||||
|
||||
+ 高性能
|
||||
|
||||
MinIO 是世界上最快的对象存储,已发布的 GET/PUT 结果在 32 个 NVMe 驱动器节点和 100GbE 网络上超过 325 GiB/秒和 165 GiB/秒。
|
||||
|
||||
+ Kubernetes 原生
|
||||
|
||||
通过原生 Kubernetes 操作集成,MinIO 支持公共云、私有云和边缘云上的所有主要 Kubernetes 发行版。
|
||||
|
||||
+ 人工智能就绪
|
||||
|
||||
MinIO 专为 AI 打造,可与所有主要 AI/ML 技术一起开箱即用。从预测模型到 GenAI,MinIO 提供的性能和可扩展性为 AI 企业提供动力。
|
||||
|
||||
## 安装说明
|
||||
|
||||
### API 端口
|
||||
|
||||
MinIO API 端口默认是 9000。
|
||||
|
||||
| API 端口 (映射内部端口) | API 内部端口 |
|
||||
|-----------------|----------|
|
||||
| 9000 | 9000 |
|
||||
|
||||
+ `API 内部端口` 是容器内部使用的端口,一般无需改动。
|
||||
+ `API 端口` 是容器外部实际访问的端口,可以根据自己的需要进行修改。
|
||||
|
||||
### 域名配置
|
||||
|
||||
假定 MinIO WebUI 服务的域名为 `web.minio.com`
|
||||
|
||||
假定 MinIO API 服务的域名为 `f.minio.com`
|
||||
|
||||
#### API 服务器 URL
|
||||
|
||||
默认情况为:`http://localhost:9000`
|
||||
|
||||
端口 `9000` 取决于 `API 内部端口` 的配置。
|
||||
|
||||
域名配置,可填写:`https://f.minio.com`
|
||||
|
||||
协议 `https` 取决于是否启用了 SSL/TLS, 是否配置了域名证书。
|
||||
|
||||
#### API 域名
|
||||
|
||||
默认情况为:`localhost`
|
||||
|
||||
域名配置,可填写:`f.minio.com`
|
||||
|
||||
#### WebUI 重定向 URL
|
||||
|
||||
默认情况为:`http://localhost:9001`
|
||||
|
||||
域名配置,可填写:`https://web.minio.com`
|
||||
|
||||
协议 `https` 取决于是否启用了 SSL/TLS, 是否配置了域名证书。
|
||||
@@ -0,0 +1,20 @@
|
||||
name: MinIO
|
||||
title: 开源的对象存储服务器
|
||||
description: 开源的对象存储服务器
|
||||
additionalProperties:
|
||||
key: minio
|
||||
name: MinIO
|
||||
tags:
|
||||
- WebSite
|
||||
- Middleware
|
||||
- Storage
|
||||
- Runtime
|
||||
- Local
|
||||
shortDescZh: 开源的对象存储服务器
|
||||
shortDescEn: Open source object storage server
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://min.io/
|
||||
github: https://github.com/minio/minio/
|
||||
document: https://min.io/docs/
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 6.3 KiB |
Reference in New Issue
Block a user