From b8b7e6a67eb55e230eb8f19a38f174fba8cc095c Mon Sep 17 00:00:00 2001 From: Tim Green Date: Mon, 21 Oct 2024 10:15:26 +1100 Subject: [PATCH 1/2] fix: ln fusermount3 --- rclone_backup/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/rclone_backup/Dockerfile b/rclone_backup/Dockerfile index 2efc639..582b59f 100644 --- a/rclone_backup/Dockerfile +++ b/rclone_backup/Dockerfile @@ -45,6 +45,7 @@ ENV RCLONE_WEBUI_INSTALLED_VERSION=2.0.5 # Install fuse RUN apk add fuse \ && sed -i 's/#user_allow_other/user_allow_other/' /etc/fuse.conf + && ln -s /bin/fusermount /bin/fusermount3 # Copy root filesystem COPY rootfs / From 6ac55ec61a3583513a2095ab8f9784b4f3daa83b Mon Sep 17 00:00:00 2001 From: Tim Green Date: Mon, 21 Oct 2024 10:52:22 +1100 Subject: [PATCH 2/2] build: fix dockerfile --- rclone_backup/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rclone_backup/Dockerfile b/rclone_backup/Dockerfile index 582b59f..9480953 100644 --- a/rclone_backup/Dockerfile +++ b/rclone_backup/Dockerfile @@ -44,7 +44,7 @@ ENV RCLONE_WEBUI_INSTALLED_VERSION=2.0.5 # Install fuse RUN apk add fuse \ - && sed -i 's/#user_allow_other/user_allow_other/' /etc/fuse.conf + && sed -i 's/#user_allow_other/user_allow_other/' /etc/fuse.conf \ && ln -s /bin/fusermount /bin/fusermount3 # Copy root filesystem