This commit is contained in:
Alexandre
2025-07-15 21:08:10 +02:00
parent f9d7271f92
commit add1fa3b20
2 changed files with 6 additions and 7 deletions

View File

@@ -38,12 +38,11 @@ RUN chmod 744 /ha_lsio.sh && \
# ---------- MinIO & tools (needed by Ente) ---------- # ---------- MinIO & tools (needed by Ente) ----------
# server binary + client (`mc`) # server binary + client (`mc`)
RUN set -eux; \ RUN set -eux; \
apt-get update; \ apk add --no-cache \
apt-get install -y --no-install-recommends curl ca-certificates wget jq tini postgresql-client-15; \ bash curl ca-certificates wget jq tini postgresql15-client; \
curl -fsSL https://dl.min.io/server/minio/release/linux-amd64/minio -o /usr/local/bin/minio; \ curl -fsSL https://dl.min.io/server/minio/release/linux-amd64/minio -o /usr/local/bin/minio; \
curl -fsSL https://dl.min.io/client/mc/release/linux-amd64/mc -o /usr/local/bin/mc; \ curl -fsSL https://dl.min.io/client/mc/release/linux-amd64/mc -o /usr/local/bin/mc; \
chmod +x /usr/local/bin/minio /usr/local/bin/mc; \ chmod +x /usr/local/bin/minio /usr/local/bin/mc
apt-get clean; rm -rf /var/lib/apt/lists/*
################## ##################
# 3 Install apps # # 3 Install apps #
@@ -52,8 +51,8 @@ RUN set -eux; \
COPY rootfs/ / COPY rootfs/ /
# bindcompat for some addons # bindcompat for some addons
RUN ln -sf /usr/bin/bash /bin/bash || true && \ #RUN ln -sf /usr/bin/bash /bin/bash || true && \
ln -sf /usr/bin/sh /bin/sh || true # ln -sf /usr/bin/sh /bin/sh || true
# Optional modules (same pattern as ente) # Optional modules (same pattern as ente)
ARG MODULES="00-banner.sh 01-custom_script.sh 00-global_var.sh 00-local_mounts.sh 00-smb_mounts.sh" ARG MODULES="00-banner.sh 01-custom_script.sh 00-global_var.sh 00-local_mounts.sh 00-smb_mounts.sh"

View File

@@ -80,7 +80,7 @@
"startup": "services", "startup": "services",
"udev": true, "udev": true,
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"version": "1.0.0test3", "version": "1.0.0test",
"video": true, "video": true,
"webui": "http://[HOST]:[PORT:3000]" "webui": "http://[HOST]:[PORT:3000]"
} }