Skip to content

Instantly share code, notes, and snippets.

@MarselScheer
MarselScheer / Dockerfile
Last active May 11, 2025 09:29
Containerized backup tools
FROM ubuntu:25.04
# in order to use rclone properly for instance rclone lsd ... with pcloud
# we need to install ca-certificates, otherwise we run into "failed to verify certificate:"
RUN apt-get update -yqq \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
borgbackup=1.4.0-5 \
ca-certificates \
rclone=1.60.1+dfsg-4 \
&& apt-get autoremove -qq --purge \