mirror of
https://github.com/Telecominfraproject/openafc_final.git
synced 2026-01-27 02:22:02 +00:00
18 lines
616 B
Plaintext
18 lines
616 B
Plaintext
#
|
|
# Copyright (C) 2021 Broadcom. All rights reserved. The term "Broadcom"
|
|
# refers solely to the Broadcom Inc. corporate affiliate that owns
|
|
# the software below. This work is licensed under the OpenAFC Project License,
|
|
# a copy of which is included with this software program
|
|
#
|
|
|
|
# Dockerfile for Nginx Exporter that brings Nginx metrics to Prometheus format
|
|
|
|
FROM bitnami/nginx-exporter:0.11.0-debian-11-r370
|
|
|
|
# URL on which Nginx' stub_status is exported
|
|
ENV NGINXEXPORTER_STUB_URL=http://dispatcher:8080/stub_status
|
|
|
|
EXPOSE 9113/tcp
|
|
|
|
ENTRYPOINT nginx-prometheus-exporter -nginx.scrape-uri=$NGINXEXPORTER_STUB_URL
|