1
0
mirror of https://github.com/xzeldon/vwdump.git synced 2025-07-16 01:14:40 +03:00

initial commit

This commit is contained in:
10
2018-11-16 01:39:51 +01:00
commit bd9987a124
5 changed files with 97 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM alpine:latest
RUN apk add --update \
sqlite
COPY start.sh backup.sh /
ENV DB_FILE /data/db.sqlite3
ENV BACKUP_FILE /data/db-backup.sqlite3
ENV CRON_TIME "* * * * *"
RUN chmod 700 /start.sh /backup.sh
CMD /start.sh