mirror of
https://github.com/xzeldon/vwdump.git
synced 2025-07-16 01:14:40 +03:00
initial commit
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal 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
|
||||
|
Reference in New Issue
Block a user