mirror of
https://github.com/arch3rPro/1Panel-Appstore.git
synced 2026-04-15 00:17:12 +08:00
feat: update rustfs 1.0.0-alpha.70
This commit is contained in:
@@ -369,7 +369,7 @@ AI驱动的开源代码知识库与文档协作平台,支持多模型、多数
|
|||||||
|
|
||||||
高性能Rust对象存储系统,提供S3兼容API
|
高性能Rust对象存储系统,提供S3兼容API
|
||||||
|
|
||||||
<kbd>latest</kbd> • [官网链接](https://github.com/rustfs/rustfs)
|
<kbd>1.0.0-alpha.70</kbd> • [官网链接](https://github.com/rustfs/rustfs)
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
12
apps/rustfs/1.0.0-alpha.70/data.yml
Normal file
12
apps/rustfs/1.0.0-alpha.70/data.yml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 9000
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
label:
|
||||||
|
en: Port
|
||||||
|
zh: 端口
|
||||||
35
apps/rustfs/1.0.0-alpha.70/docker-compose.yml
Normal file
35
apps/rustfs/1.0.0-alpha.70/docker-compose.yml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
|
||||||
|
services:
|
||||||
|
rustfs:
|
||||||
|
image: rustfs/rustfs:1.0.0-alpha.70
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:9000" # S3 API port
|
||||||
|
environment:
|
||||||
|
- RUSTFS_CONSOLE_ENABLE=true
|
||||||
|
- RUSTFS_LOG_LEVEL=info
|
||||||
|
volumes:
|
||||||
|
- ./data:/data
|
||||||
|
- ./logs:/logs
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
restart: always
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
[
|
||||||
|
"CMD",
|
||||||
|
"wget",
|
||||||
|
"--no-verbose",
|
||||||
|
"--tries=1",
|
||||||
|
"--spider",
|
||||||
|
"http://localhost:9000/health",
|
||||||
|
]
|
||||||
|
interval: 30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 40s
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
Reference in New Issue
Block a user