This repository has been archived on 2025-06-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2025-06-06 19:19:21 +01:00

17 lines
351 B
Docker

FROM docker.io/creativeprojects/resticprofile:0.31.0
ENV TZ=UTC
RUN set -eux && \
apk update && \
apk add sqlite && \
mkdir -p /app/var/backups
WORKDIR /etc/resticprofile
COPY . .
RUN chmod +x db_dump.sh entrypoint.sh && \
resticprofile schedule --all
ENTRYPOINT ["/etc/resticprofile/entrypoint.sh"]
CMD ["crond", "-f", "-l", "2"]