From 8b66a31bc61ed662599c2f6effa1a12287f4e27d Mon Sep 17 00:00:00 2001 From: Thijs van Loef Date: Tue, 13 Feb 2024 18:38:01 +0100 Subject: [PATCH 1/5] update package versions --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6d4183626..4bacc0026 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,11 +40,11 @@ ARG SUPERCRONIC_VERSION="0.2.29" # update and install dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ - procps=2:3.3.17-5 \ - wget=1.21-1+deb11u1 \ - gettext-base=0.21-4 \ - xdg-user-dirs=0.17-2 \ - jo=1.3-2 \ + procps=2:4.0.2-3 \ + wget=1.21.3-1+b2 \ + gettext-base=0.21-12 \ + xdg-user-dirs=0.18-1 \ + jo=1.9-1 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* From 703936880b8cff4e69accf61e0c07374cef59465 Mon Sep 17 00:00:00 2001 From: Thijs van Loef <58031337+thijsvanloef@users.noreply.github.com> Date: Tue, 13 Feb 2024 18:57:06 +0100 Subject: [PATCH 2/5] Update automatic-reboots.md --- docusaurus/docs/guides/automatic-reboots.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus/docs/guides/automatic-reboots.md b/docusaurus/docs/guides/automatic-reboots.md index 55168a870..197ee4f3a 100644 --- a/docusaurus/docs/guides/automatic-reboots.md +++ b/docusaurus/docs/guides/automatic-reboots.md @@ -17,7 +17,7 @@ The example docker run command and docker compose file in [the Quicksetup](https already use the needed policy ::: -Set `AUTO_REBOOT_ENABLED` enable or disable automatic reboots (Default is disabled) +Set `AUTO_REBOOT_ENABLED` to true or false to enable or disable automatic reboots (Default is disabled) `AUTO_REBOOT_CRON_EXPRESSION` is a cron expression, in a Cron-Expression you define an interval for when to run jobs. From fb10d4f19d24c3ce17676b89ad7649ba6296747e Mon Sep 17 00:00:00 2001 From: Thijs van Loef <58031337+thijsvanloef@users.noreply.github.com> Date: Tue, 13 Feb 2024 18:57:21 +0100 Subject: [PATCH 3/5] Update automatic-reboots.md --- docusaurus/docs/guides/automatic-reboots.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus/docs/guides/automatic-reboots.md b/docusaurus/docs/guides/automatic-reboots.md index 197ee4f3a..dea79de0d 100644 --- a/docusaurus/docs/guides/automatic-reboots.md +++ b/docusaurus/docs/guides/automatic-reboots.md @@ -17,7 +17,7 @@ The example docker run command and docker compose file in [the Quicksetup](https already use the needed policy ::: -Set `AUTO_REBOOT_ENABLED` to true or false to enable or disable automatic reboots (Default is disabled) +Set `AUTO_REBOOT_ENABLED` to `true` or `false` to enable or disable automatic reboots (Default is disabled) `AUTO_REBOOT_CRON_EXPRESSION` is a cron expression, in a Cron-Expression you define an interval for when to run jobs. From ddfa205c7ab1850bf4aaa32edf6bca03f2463bed Mon Sep 17 00:00:00 2001 From: Thijs van Loef Date: Tue, 13 Feb 2024 19:27:01 +0100 Subject: [PATCH 4/5] sadly no matching package for wget --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4bacc0026..fe3c7d677 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,8 @@ ARG SUPERCRONIC_VERSION="0.2.29" # update and install dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ procps=2:4.0.2-3 \ - wget=1.21.3-1+b2 \ + # hadolint ignore=DL3008 + wget \ gettext-base=0.21-12 \ xdg-user-dirs=0.18-1 \ jo=1.9-1 \ From 613b01d5fcc9b51611fd2b8f915303eb685b1e03 Mon Sep 17 00:00:00 2001 From: Thijs van Loef Date: Tue, 13 Feb 2024 19:28:05 +0100 Subject: [PATCH 5/5] move ignore --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fe3c7d677..2ecb85ad9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,10 +39,10 @@ ARG SUPERCRONIC_SHA1SUM_AMD64="cd48d45c4b10f3f0bfdd3a57d054cd05ac96812b" ARG SUPERCRONIC_VERSION="0.2.29" # update and install dependencies +# hadolint ignore=DL3008 RUN apt-get update && apt-get install -y --no-install-recommends \ procps=2:4.0.2-3 \ - # hadolint ignore=DL3008 - wget \ + wget \ gettext-base=0.21-12 \ xdg-user-dirs=0.18-1 \ jo=1.9-1 \