Files
prometheus-restic-backblaze/Dockerfile

18 lines
417 B
Docker
Raw Normal View History

FROM debian:bookworm
2020-09-05 13:20:22 +02:00
RUN : \
&& apt-get update \
&& apt-get install -y \
backblaze-b2 \
2020-09-05 13:20:22 +02:00
curl \
dumb-init \
2020-09-05 13:20:22 +02:00
python3 \
python3-prometheus-client \
python3-yaml \
restic \
&& apt-get -y clean
COPY ./restic-monitor.py /usr/local/bin/restic-monitor
CMD ["/usr/bin/dumb-init", "--", "/usr/local/bin/restic-monitor", "/etc/restic-backblaze-config.yml"]