feat: add backup-status service (port 9999, push API for borgmatic)

This commit is contained in:
feldjaeger 2026-04-02 11:49:03 +02:00
parent 519eb66bef
commit 6ad9b1a93f
3 changed files with 79 additions and 0 deletions

5
backup-status/Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM python:3.12-slim
RUN pip install flask
WORKDIR /app
COPY app.py .
CMD ["python", "app.py"]