Add Dockerfile and backup script for SSH server setup

This commit is contained in:
gyurix
2025-07-10 08:15:51 +02:00
parent 445108d64f
commit 8c3f6424e0
2 changed files with 76 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:latest
RUN apk add --no-cache \
openssh-server-pam \
su-exec \
borgbackup
COPY start_backup.sh /start_backup.sh
RUN chmod +x /start_backup.sh
CMD /start_backup.sh