18 lines
359 B
Docker
18 lines
359 B
Docker
|
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"]
|