This commit is contained in:
Einar Forselv
2019-04-13 19:04:54 +02:00
commit a3cdb38239
11 changed files with 280 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM restic/restic
ADD requirements.txt /
RUN apk update && apk add python3 dcron
RUN pip3 install -r requirements.txt
ADD restic-backup /restic-backup
WORKDIR /restic-backup
ENTRYPOINT []
CMD ["/restic-backup/entrypoint.sh"]