From 412365b5ae58d91c532704ba1f42f876d059ef3c Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 18 Oct 2024 09:21:01 +0100 Subject: [PATCH 1/3] Bumping version to 4.1.24 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 1526980..b9dde72 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.23 \ No newline at end of file +4.1.24 \ No newline at end of file From e239f02b6f568e94dcba020026e85cdaf94757c0 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 18 Oct 2024 09:21:07 +0100 Subject: [PATCH 2/3] Removing del force --- overlay/etc/bf/init.d/31-fr-setup-data.nu | 2 +- overlay/tmp/install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/overlay/etc/bf/init.d/31-fr-setup-data.nu b/overlay/etc/bf/init.d/31-fr-setup-data.nu index 7fdb3ae..e65afe8 100644 --- a/overlay/etc/bf/init.d/31-fr-setup-data.nu +++ b/overlay/etc/bf/init.d/31-fr-setup-data.nu @@ -13,7 +13,7 @@ def main [] { # ensure /data is symlinked from source if ($fr_src_data | bf fs is_not_symlink) { bf write $"Deleting ($fr_src_data) and recreating it as a symlink." - bf del force $fr_src_data + rm --force --recursive $fr_src_data ^ln -s $fr_data $fr_src_data } diff --git a/overlay/tmp/install b/overlay/tmp/install index c171c17..8c8da9f 100644 --- a/overlay/tmp/install +++ b/overlay/tmp/install @@ -21,7 +21,7 @@ def main [] { # cleanup bf write "Removing /www files and directories." - bf del force /www/* + rm --force --recursive /www/* } # Download and install FreshRSS source files From 7a5c61d02179cf90e6342184ab974467a84e1dad Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 18 Oct 2024 09:21:18 +0100 Subject: [PATCH 3/3] Using latest base image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae8c72c..36ea390 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/bfren/nginx-php:php8.3.10-7.2.21 +FROM ghcr.io/bfren/nginx-php:php8.3.12-7.2.22 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-freshrss"