From b22d7bc9ae92c10b2764ea4e7ac3e9d1e32dcaf3 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 19 Feb 2026 10:23:00 +0100 Subject: [PATCH 1/2] Fix npm start execution in 99-run.sh --- seerr/rootfs/etc/cont-init.d/99-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seerr/rootfs/etc/cont-init.d/99-run.sh b/seerr/rootfs/etc/cont-init.d/99-run.sh index 4d3ef367d..940a8c1e9 100755 --- a/seerr/rootfs/etc/cont-init.d/99-run.sh +++ b/seerr/rootfs/etc/cont-init.d/99-run.sh @@ -13,4 +13,4 @@ bashio::log.info "Starting NGinx..." nginx & bashio::log.info "Starting app" -exec npm start +npm start From 5f39986f4b31be64a4a2bc26d00bb7ae487288ee Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 19 Feb 2026 10:23:30 +0100 Subject: [PATCH 2/2] Add nginx to the PACKAGES environment variable --- seerr/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seerr/Dockerfile b/seerr/Dockerfile index a99f81a87..2ca7e98ba 100644 --- a/seerr/Dockerfile +++ b/seerr/Dockerfile @@ -56,7 +56,7 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 744 /ha_automodules.sh && /ha_automodules.sh "$MODULES" && rm /ha_automodules.sh # Manual apps -ENV PACKAGES="" +ENV PACKAGES="nginx" # Automatic apps & bashio ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_autoapps.sh" "/ha_autoapps.sh"