From c4c458a0e01a1d4eed207eb7af7476ec8b97e505 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Thu, 5 Dec 2024 21:24:37 +0100 Subject: [PATCH] add plugin dcLog --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index bc53007..935f573 100644 --- a/Dockerfile +++ b/Dockerfile @@ -127,6 +127,14 @@ RUN curl -fsSL -o plugin.zip "https://github.com/JcDenis/DotclearWatch/releases/ && chown -R www:www /var/lib/dotclear/plugins \ && rm plugin.zip +# dcLog +ENV VER_DL=1.7.3 +RUN curl -fsSL -o plugin.zip "https://github.com/JcDenis/dcLog/releases/download/v$VER_DL/plugin-dcLog.zip" \ + && mkdir -p /var/lib/dotclear/plugins/dcLog \ + && unzip -d /var/lib/dotclear/plugins plugin.zip \ + && chown -R www:www /var/lib/dotclear/plugins \ + && rm plugin.zip + # sysInfo ENV VER_SI=9.6 RUN curl -fsSL -o plugin.zip "https://github.com/franck-paul/sysInfo/releases/download/$VER_SI/plugin-sysInfo-$VER_SI.zip" \