diff --git a/rclone_backup/CHANGELOG.md b/rclone_backup/CHANGELOG.md index a7aa1ea..4ac92d1 100644 --- a/rclone_backup/CHANGELOG.md +++ b/rclone_backup/CHANGELOG.md @@ -1,12 +1,12 @@ ## What’s changed -## What's Changed -* build(deps): bump `rclone` to `1.61.1` by @davralin in https://github.com/jcwillox/hassio-rclone-backup/pull/29 -* build(deps): bump golang deps (826ebb8) -* chore: update LICENSE (fba9e25) -* chore: update workflows (0826dc9) - -## New Contributors -* @davralin made their first contribution in https://github.com/jcwillox/hassio-rclone-backup/pull/29 - +## What's Changed +* build(deps): bump `rclone` to `1.61.1` by @davralin in https://github.com/jcwillox/hassio-rclone-backup/pull/29 +* build(deps): bump golang deps (826ebb8) +* chore: update LICENSE (fba9e25) +* chore: update workflows (0826dc9) + +## New Contributors +* @davralin made their first contribution in https://github.com/jcwillox/hassio-rclone-backup/pull/29 + **Full Changelog**: https://github.com/jcwillox/hassio-rclone-backup/compare/3.0.0...3.0.1 diff --git a/rclone_backup/Dockerfile b/rclone_backup/Dockerfile index 4ae0eaf..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 @@ -73,9 +77,6 @@ RUN if [ "${BUILD_ARCH}" = "armhf" ]; then \ && rm -rf /tmp/rclone* \ && mkdir -p /root/.config/rclone -RUN apk add fuse -RUN sed -i 's/#user_allow_other/user_allow_other/' /etc/fuse.conf - # Labels LABEL \ org.opencontainers.image.title="${BUILD_NAME}" \