diff --git a/README.md b/README.md index 285016f..e8ddbb0 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ _MinIO is a High Performance Object Storage released under GNU Affero General Pu ## Sponsoring ❤️ -If you like this add-on and would like to support my work, you can buy me a coffee. ☕ +If you like this add-on and would like to support my work and future projects, you can buy me a coffee. ☕ Sponsoring available on Paypal (https://paypal.me/martemme). diff --git a/minio/build.yaml b/minio/build.yaml deleted file mode 100644 index c9901f1..0000000 --- a/minio/build.yaml +++ /dev/null @@ -1,8 +0,0 @@ -build_from: - aarch64: "ghcr.io/home-assistant/aarch64-base:3.18" - amd64: "ghcr.io/home-assistant/amd64-base:3.18" -labels: - org.opencontainers.image.title: "MinIO Home Assistant Add-on" - org.opencontainers.image.description: "Docker container for MinIO.." - org.opencontainers.image.source: "https://github.com/martemme/HomeAssistantAddons" - org.opencontainers.image.licenses: "MIT" \ No newline at end of file diff --git a/minio/config.json b/minio/config.json new file mode 100644 index 0000000..9f17d9b --- /dev/null +++ b/minio/config.json @@ -0,0 +1,40 @@ +{ + "name": "MinIO S3 Server", + "version": "1.0.0", + "slug": "minio", + "description": "MinIO Server S3-compatible object storage server", + "arch": [ + "amd64", + "aarch64" + ], + "startup": "services", + "boot": "auto", + "hassio_api": false, + "host_network": false, + "panel_icon": "mdi:database", + "panel_title": "MinIO", + "ingress": true, + "ingress_port": 9001, + "ingress_stream": false, + "ports": { + "9000/tcp": 9000, + "9001/tcp": 9001 + }, + "map": { + "config": "rw", + "ssl": "rw" + }, + "options": { + "access_key": "admin", + "secret_key": "CHANGEME-strong-password", + "region": "us-east-1", + "bucket": "backup" + }, + "schema": { + "access_key": "str", + "secret_key": "str", + "region": "str", + "bucket": "str" + }, + "image": "docker.io/minio/minio:latest" +} \ No newline at end of file diff --git a/minio/config.yaml b/minio/config.yaml deleted file mode 100644 index 0775c2d..0000000 --- a/minio/config.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: MinIO S3 Server -version: "1.0.0" -slug: minio -description: MinIO Server S3-compatible object storage server -arch: - - amd64 - - aarch64 -startup: services -boot: auto -hassio_api: false -host_network: false -panel_icon: mdi:database -panel_title: MinIO -ingress: true -ingress_port: 9001 -ingress_stream: false -ports: - "9000/tcp": 9000 - "9001/tcp": 9001 -map: - - config:rw - - ssl:rw -options: - access_key: admin - secret_key: CHANGEME-strong-password - region: us-east-1 - bucket: backup -schema: - access_key: str - secret_key: str - region: str - bucket: str -image: docker.io/minio/minio:latest diff --git a/repository.json b/repository.json new file mode 100644 index 0000000..6022be8 --- /dev/null +++ b/repository.json @@ -0,0 +1,5 @@ +{ + "name": "HA Add-ons by martemme", + "url": "https://github.com/martemme/HomeAssistantAddons", + "maintainer": "martemme" +} \ No newline at end of file diff --git a/repository.yaml b/repository.yaml deleted file mode 100644 index 55c313c..0000000 --- a/repository.yaml +++ /dev/null @@ -1,3 +0,0 @@ -name: HA Add-ons by martemme -url: 'https://github.com/martemme/HomeAssistantAddons' -maintainer: martemme \ No newline at end of file