feat: crud and backups are working

This commit is contained in:
2025-05-30 18:49:40 -04:00
parent 3ee136d52d
commit b8ce9ded76
19 changed files with 191 additions and 21 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM alpine:latest
RUN apk add --no-cache docker-cli bash findutils postgresql-client
COPY backup.sh /backup.sh
RUN chmod +x /backup.sh
CMD ["/backup.sh"]