fix image/2

This commit is contained in:
2025-05-06 01:06:59 +02:00
parent 0a67d0a4eb
commit e47b4ec1e2
4 changed files with 14 additions and 7 deletions

View File

@@ -10,7 +10,6 @@ If you want to do add the repository manually, please follow the procedure highl
### [MinIO](./minio) ### [MinIO](./minio)
![Supports aarch64 Architecture][aarch64-shield]
![Supports amd64 Architecture][amd64-shield] ![Supports amd64 Architecture][amd64-shield]
_MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service._ _MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service._

View File

@@ -1,4 +1,4 @@
FROM ghcr.io/home-assistant/amd64-addon-base:latest FROM homeassistant/amd64-addon-base:latest
LABEL io.hass.name="MinIO" LABEL io.hass.name="MinIO"
LABEL io.hass.description="S3-compatible object storage for HA" LABEL io.hass.description="S3-compatible object storage for HA"

View File

@@ -1,6 +1,5 @@
# Home Assistant Add-on: MinIO # Home Assistant Add-on: MinIO
![Supports aarch64 Architecture][aarch64-shield]
![Supports amd64 Architecture][amd64-shield] ![Supports amd64 Architecture][amd64-shield]
This add-on provides an **S3-compatible** server based on MinIO, perfect for: This add-on provides an **S3-compatible** server based on MinIO, perfect for:
@@ -69,9 +68,20 @@ Consider enabling automatic TLS by placing certificates in `/ssl/`.
- Healthcheck and Prometheus metrics - Healthcheck and Prometheus metrics
- Interface for managing users/buckets via options - Interface for managing users/buckets via options
## Changelog & Releases
Releases are based on [Semantic Versioning][semver], and use the format
of `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented
based on the following:
- `MAJOR`: Incompatible or major changes.
- `MINOR`: Backwards-compatible new features and enhancements.
- `PATCH`: Backwards-compatible bugfixes and package updates.
--- ---
Made with ❤️ for automation and resilience. Made with ❤️ for automation and resilience.
[semver]: http://semver.org/spec/v2.0.0.html
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg

View File

@@ -4,8 +4,7 @@
"slug": "minio", "slug": "minio",
"description": "MinIO Server S3-compatible object storage server", "description": "MinIO Server S3-compatible object storage server",
"arch": [ "arch": [
"amd64", "amd64"
"aarch64"
], ],
"startup": "services", "startup": "services",
"boot": "auto", "boot": "auto",
@@ -38,7 +37,6 @@
"bucket": "str" "bucket": "str"
}, },
"build_from": { "build_from": {
"amd64": "homeassistant/amd64-addon-base:latest", "amd64": "homeassistant/amd64-addon-base:latest"
"aarch64": "homeassistant/aarch64-addon-base:latest"
} }
} }