From b35b1cca3f113171a3f25f0cae97aa7b27458d7f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 8 Dec 2022 05:56:21 +0100 Subject: [PATCH] Custom env variables https://github.com/alexbelgium/hassio-addons/issues/591 --- wger/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wger/Dockerfile b/wger/Dockerfile index ebc015c3f..bdd5abfd7 100644 --- a/wger/Dockerfile +++ b/wger/Dockerfile @@ -45,7 +45,7 @@ RUN echo "wger ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && \ COPY rootfs/ / # Modules -ARG MODULES="00-banner.sh" +ARG MODULES="00-banner.sh 01-custom_script.sh 90-config_yaml.sh" # Automatic modules download RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get install -yqq --no-install-recommends bash || apk add --no-cache bash) >/dev/null; fi \