Skip to content

Commit

Permalink
fix: dockerfile and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jcwillox committed Dec 30, 2023
1 parent d6e3544 commit a352082
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
18 changes: 9 additions & 9 deletions rclone_backup/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
7 changes: 4 additions & 3 deletions rclone_backup/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}" \
Expand Down

0 comments on commit a352082

Please sign in to comment.