first commit

This commit is contained in:
2025-05-10 20:33:32 +03:00
commit 32c2bb70e1
9 changed files with 239 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM postgres:17
WORKDIR /root
RUN apt update && \
apt -y install restic ca-certificates
COPY docker-entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]