Clone of Duplicati, but with rclone installed and added to PATH
9.4K
This is a Duplicati image with the rclone binary added to it.
The Dockerfile is tiny, so I can post it here without taking too much space:
FROM duplicati/duplicati:latest
ARG DEBIAN_FRONTEND=noninteractive
# Install unzip (man-db is optional, but useful)
RUN apt-get update
RUN apt-get -y --no-install-recommends install unzip man-db
# Put rclone binary in /usr/bin/rclone
# https://rclone.org/downloads/#script-download-and-install
RUN curl https://rclone.org/install.sh | bash
The GitHub Action checks daily if https://github.com/duplicati/duplicati changes (checks last commit id).
If it changed since the last check, the GitHub Action builds the Dockerfile and uploads the Docker image here.
To use rclone.
Content type
Image
Digest
sha256:9228f067e…
Size
244.5 MB
Last updated
2 days ago
docker pull schklom/duplicati