all-in-one/Containers/borgbackup/Dockerfile

25 lines
456 B
Text
Raw Normal View History

# syntax=docker/dockerfile:latest
FROM alpine:3.19.1
2021-11-30 11:20:42 +01:00
RUN set -ex; \
\
apk add --no-cache \
util-linux-misc \
bash \
borgbackup \
2021-11-30 11:20:42 +01:00
rsync \
fuse \
py3-llfuse \
jq
2021-11-30 11:20:42 +01:00
VOLUME /root
COPY --chmod=770 *.sh /
ENTRYPOINT ["/start.sh"]
# hadolint ignore=DL3002
USER root
2021-11-30 11:20:42 +01:00
LABEL com.centurylinklabs.watchtower.enable="false"
ENV BORG_RETENTION_POLICY="--keep-within=7d --keep-weekly=4 --keep-monthly=6"