fix dockerfile/1

This commit is contained in:
2025-05-06 00:00:10 +02:00
parent f721e3907e
commit 4e819a7cab
2 changed files with 10 additions and 7 deletions

View File

@@ -1,11 +1,13 @@
FROM minio/minio:latest
LABEL \
io.hass.version="1.0" \
io.hass.type="addon" \
io.hass.arch="aarch64|amd64"
io.hass.version="1.0.1" \
io.hass.type="addon" \
io.hass.arch="aarch64|amd64" \
io.hass.name="MinIO" \
io.hass.description="MinIO is an object storage server compatible with Amazon S3."
COPY run.sh /usr/local/bin/run.sh
RUN chmod +x /usr/local/bin/run.sh
COPY run.sh /run.sh
RUN chmod +x /run.sh
CMD ["/usr/local/bin/run.sh"]
ENTRYPOINT [ "/run.sh" ]

View File

@@ -10,7 +10,8 @@
"startup": "services",
"boot": "auto",
"hassio_api": false,
"host_network": false,
"init": false,
"host_network": true,
"panel_icon": "mdi:database",
"panel_title": "MinIO",
"ingress": true,