genesis commit

This commit is contained in:
Hanjo Meinhardt
2022-05-30 21:53:08 +02:00
commit 9c67bc06d9
7 changed files with 179 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM alpine:3.16
ARG BORG_VERSION=1.2.0-r0
ARG OPENSSH_VERSION=9.0_p1-r1
RUN apk add --no-cache borgbackup=${BORG_VERSION} openssh=${OPENSSH_VERSION}
COPY assets/*.sh /usr/bin/
ENV CRON_SCHEDULE="0 */1 * * *"
VOLUME ["/root/.ssh", "/output"]
ENTRYPOINT [ "/usr/bin/entrypoint.sh" ]