prometheus-immich-exporter/Dockerfile

18 lines
359 B
Docker
Raw Normal View History

2020-09-29 11:54:26 +02:00
FROM alpine:3.11
# Installing required packages
RUN apk add --update --no-cache \
python3
# Install package
2020-09-29 13:47:32 +02:00
RUN pip3 install prometheus-qbittorrent-exporter==1.0.2
2020-09-29 11:54:26 +02:00
ENV QBITTORRENT_HOST=""
ENV QBITTORRENT_PORT=""
ENV QBITTORRENT_USER=""
ENV QBITTORRENT_PASS=""
ENV EXPORTER_PORT="8000"
ENV EXPORTER_LOG_LEVEL="INFO"
ENTRYPOINT ["qbittorrent-exporter"]