Added Dockerfile

This commit is contained in:
Esteban Sánchez 2020-09-29 11:54:26 +02:00
parent 28f1611079
commit b924dd2bbb

17
Dockerfile Normal file
View file

@ -0,0 +1,17 @@
FROM alpine:3.11
# Installing required packages
RUN apk add --update --no-cache \
python3
# Install package
RUN pip3 install prometheus-qbittorrent-exporter==1.0.1
ENV QBITTORRENT_HOST=""
ENV QBITTORRENT_PORT=""
ENV QBITTORRENT_USER=""
ENV QBITTORRENT_PASS=""
ENV EXPORTER_PORT="8000"
ENV EXPORTER_LOG_LEVEL="INFO"
ENTRYPOINT ["qbittorrent-exporter"]