fix(minio): update description, version, and add drive parameter support

This commit is contained in:
2025-05-06 09:18:06 +02:00
parent e8421beff3
commit 83890aaf5d
4 changed files with 27 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "MinIO S3 Server",
"version": "1.1.0",
"name": "MinIO",
"version": "1.1.1",
"slug": "minio",
"description": "MinIO Server S3-compatible object storage server",
"arch": [
@@ -8,6 +8,7 @@
"aarch64"
],
"startup": "services",
"url": "https://github.com/martemme/HomeAssistantAddons/tree/main/minio",
"boot": "auto",
"hassio_api": false,
"init": false,
@@ -19,17 +20,25 @@
"9000/tcp": 9000,
"9001/tcp": 9001
},
"ports_description": {
"9000/tcp": "Web Interface",
"9001/tcp": "Web Console"
},
"webui": "[PROTO:ssl]://[HOST]:[PORT:9000]",
"map": {
"config": "rw",
"share": "rw",
"ssl": "rw"
},
"options": {
"access_key": "admin",
"secret_key": "CHANGEME-strong-password"
"secret_key": "CHANGEME-strong-password",
"drive": "storage"
},
"schema": {
"access_key": "str",
"secret_key": "str"
"secret_key": "str",
"drive": "str"
},
"build_from": {
"amd64": "alpine:3.18",