auto backup and send via telegram

This commit is contained in:
Parsa Nazer
2025-02-24 23:08:36 +03:30
parent 7531302b49
commit 0180f528e2
4 changed files with 55 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM alpine:3.19
RUN apk add --no-cache postgresql-client curl zip tzdata
WORKDIR /app
COPY backup.sh .
RUN chmod +x backup.sh
CMD ["/app/backup.sh"]