renamed snapshot to backup

This commit is contained in:
2021-09-07 23:37:54 +02:00
parent 1e3d28dc79
commit f3ce46e4d4
9 changed files with 61 additions and 60 deletions

14
auto-backup/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
ARG BUILD_FROM
FROM $BUILD_FROM
ENV LANG C.UTF-8
# Copy scripts for add-on
COPY run.sh /
COPY backup.sh /
RUN apk add -U jq bc curl && \
chmod a+x /run.sh && \
chmod a+x /backup.sh
CMD [ "/run.sh" ]