alert for addon rename

This commit is contained in:
2021-09-07 23:51:30 +02:00
parent ad81f9e0c6
commit 42a3f850fa
7 changed files with 106 additions and 0 deletions

14
auto-snapshot/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 snapshot.sh /
RUN apk add -U jq bc curl && \
chmod a+x /run.sh && \
chmod a+x /snapshot.sh
CMD [ "/run.sh" ]