feat: add backup compose service

This commit is contained in:
2026-07-22 00:22:56 +02:00
parent 5e7807b056
commit 34e88a8cf5
3 changed files with 41 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM postgres:16-alpine
RUN apk add --no-cache bash restic coreutils
COPY scripts/backup/container-entrypoint.sh /usr/local/bin/dragons-stash-backup
RUN chmod 0755 /usr/local/bin/dragons-stash-backup
ENTRYPOINT ["/usr/local/bin/dragons-stash-backup"]