all-in-one/Containers/borgbackup/Dockerfile

19 lines
301 B
Text
Raw Normal View History

FROM alpine:3.15.0
2021-11-30 18:20:42 +08:00
RUN set -ex; \
\
apk add --update --no-cache \
bash \
2021-11-30 18:20:42 +08:00
borgbackup \
rsync \
fuse3
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"]