Compare commits

...

8 Commits

Author SHA1 Message Date
Alexandre
752ae829d3 Refresh nginx_webserver_proxy startup fix 2026-06-19 11:40:12 +02:00
Alexandre
c4b603ecf7 Update Dockerfile 2026-06-19 11:34:58 +02:00
Alexandre
e62389edb9 Update Dockerfile 2026-06-19 11:34:39 +02:00
Alexandre
44d9333915 Update build.yaml 2026-06-19 11:34:27 +02:00
Alexandre
d89a6be2fa Fix nginx_webserver_proxy bash startup path 2026-06-19 11:32:35 +02:00
Alexandre
96c2aa45e9 Fix nginx_webserver_proxy bash startup path 2026-06-19 11:32:28 +02:00
Alexandre
b7acd8fb97 Fix nginx_webserver_proxy bash startup path 2026-06-19 11:32:18 +02:00
Alexandre
b13081dec0 Fix nginx_webserver_proxy bash startup path 2026-06-19 11:32:08 +02:00
3 changed files with 6 additions and 10 deletions

View File

@@ -1,18 +1,14 @@
ARG BUILD_FROM=jc21/nginx-proxy-manager:latest
FROM ${BUILD_FROM}
# NPM is Debian-based; install jq for options parsing + stub with-contenv if absent
# NPM is Debian-based; install jq for options parsing and ensure bash is present.
# hadolint ignore=DL3008
RUN apt-get update \
&& apt-get install -y --no-install-recommends jq \
&& rm -rf /var/lib/apt/lists/* \
&& if ! command -v with-contenv >/dev/null 2>&1; then \
printf '#!/usr/bin/env bash\nexec "$@"\n' > /usr/bin/with-contenv \
&& chmod +x /usr/bin/with-contenv; \
fi
&& apt-get install -y --no-install-recommends bash jq \
&& rm -rf /var/lib/apt/lists/*
COPY run.sh /npm-addon-init.sh
RUN chmod +x /npm-addon-init.sh
RUN chmod 0755 /npm-addon-init.sh
ARG BUILD_VERSION
LABEL \

View File

@@ -1,7 +1,7 @@
name: "Nginx Proxy Manager + Static Web Server"
slug: nginx_webserver_proxy
description: "Nginx Proxy Manager with a built-in configurable static file server. Manage reverse proxies via NPM UI on port 81 while serving files from HA storage on port 80."
version: "2.14.0"
version: "2.14.1"
url: "https://github.com/alexbelgium/hassio-addons/tree/master/nginx_webserver_proxy"
arch:
- amd64

View File

@@ -1,4 +1,4 @@
#!/usr/bin/with-contenv bash
#!/bin/bash
# shellcheck shell=bash
set -Eeuo pipefail