Initial commit

This commit is contained in:
Rhys Bailey
2023-02-12 22:47:45 +11:00
commit df43756006
6 changed files with 1325 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM alpine
RUN apk update && apk add py3-prometheus-client
COPY prometheus_frigate_exporter.py /var/python_scripts/prometheus_frigate_exporter.py
CMD /usr/bin/python3 /var/python_scripts/prometheus_frigate_exporter.py $FRIGATE_STATS_URL
# docker build -t prometheus_frigate_exporter .