all-in-one/Containers/borgbackup/Dockerfile

24 lines
409 B
Text
Raw Normal View History

FROM alpine:3.17.2
2021-11-30 18:20:42 +08:00
RUN set -ex; \
\
apk add --no-cache \
util-linux-misc \
bash \
borgbackup \
2021-11-30 18:20:42 +08:00
rsync \
fuse \
py3-llfuse \
jq
2021-11-30 18:20:42 +08:00
VOLUME /root
COPY start.sh /usr/bin/
COPY backupscript.sh /
RUN chmod +x /usr/bin/start.sh; \
chmod +x /backupscript.sh
USER root
ENTRYPOINT ["start.sh"]
LABEL com.centurylinklabs.watchtower.monitor-only="true"