diff --git a/rclone_backup/Dockerfile b/rclone_backup/Dockerfile index 2964735..41c7868 100644 --- a/rclone_backup/Dockerfile +++ b/rclone_backup/Dockerfile @@ -38,6 +38,10 @@ ENV LANG C.UTF-8 ENV RCLONE_INSTALLED_VERSION 1.65.0 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 + # Copy root filesystem COPY rootfs / COPY --from=build /app/scheduler.bin /usr/bin/scheduler diff --git a/rclone_backup/config.yaml b/rclone_backup/config.yaml index 4ffd5e4..fcdf1aa 100644 --- a/rclone_backup/config.yaml +++ b/rclone_backup/config.yaml @@ -65,3 +65,8 @@ schema: no_slugify: bool? log_level: list(debug|info|warning|error|fatal)? image: ghcr.io/jcwillox/hassio-rclone-backup/{arch} +devices: + - /dev/fuse +privileged: + - SYS_ADMIN +apparmor: false