Add backup-client functionality with Docker support and backup script

This commit is contained in:
gyurix
2025-08-26 17:24:07 +02:00
parent 390284784c
commit def79b992a
3 changed files with 120 additions and 1 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM alpine:latest
RUN apk add --no-cache \
openssh-client \
sshpass \
jq \
busybox-extras \
borgbackup
COPY start_backup.sh /start_backup.sh
RUN chmod +x /start_backup.sh
CMD /start_backup.sh