all-in-one/Containers/borgbackup/Dockerfile

21 lines
382 B
Text
Raw Normal View History

FROM alpine:3.17.3
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=775 start.sh /usr/bin/start.sh
COPY --chmod=775 backupscript.sh /backupscript.sh
2021-11-30 11:20:42 +01:00
ENTRYPOINT ["start.sh"]
LABEL com.centurylinklabs.watchtower.monitor-only="true"