From e47b4ec1e2cc46389ed80a40601aa52d6b50c28d Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 6 May 2025 01:06:59 +0200 Subject: [PATCH] fix image/2 --- README.md | 1 - minio/Dockerfile | 2 +- minio/README.md | 12 +++++++++++- minio/config.json | 6 ++---- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e8ddbb0..0602784 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ If you want to do add the repository manually, please follow the procedure highl ### [MinIO](./minio) -![Supports aarch64 Architecture][aarch64-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._ diff --git a/minio/Dockerfile b/minio/Dockerfile index c4703c5..796bbef 100644 --- a/minio/Dockerfile +++ b/minio/Dockerfile @@ -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.description="S3-compatible object storage for HA" diff --git a/minio/README.md b/minio/README.md index a95c39b..bd7013b 100644 --- a/minio/README.md +++ b/minio/README.md @@ -1,6 +1,5 @@ # Home Assistant Add-on: MinIO -![Supports aarch64 Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] 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 - 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. +[semver]: http://semver.org/spec/v2.0.0.html [aarch64-shield]: https://img.shields.io/badge/aarch64-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 diff --git a/minio/config.json b/minio/config.json index 27e7e57..a9218e8 100644 --- a/minio/config.json +++ b/minio/config.json @@ -4,8 +4,7 @@ "slug": "minio", "description": "MinIO Server S3-compatible object storage server", "arch": [ - "amd64", - "aarch64" + "amd64" ], "startup": "services", "boot": "auto", @@ -38,7 +37,6 @@ "bucket": "str" }, "build_from": { - "amd64": "homeassistant/amd64-addon-base:latest", - "aarch64": "homeassistant/aarch64-addon-base:latest" + "amd64": "homeassistant/amd64-addon-base:latest" } } \ No newline at end of file