forked from mirrors/statsd_exporter
88af8dcd24
Signed-off-by: Vaibhav Khurana <vaibhav.khurana@razorpay.com>
8 lines
323 B
Docker
8 lines
323 B
Docker
FROM quay.io/prometheus/busybox:latest
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
|
|
|
COPY statsd_exporter /bin/statsd_exporter
|
|
|
|
EXPOSE 9102 9125 9125/udp
|
|
HEALTHCHECK CMD wget --spider -S "http://localhost:9102/metrics" -T 60 2>&1 || exit 1
|
|
ENTRYPOINT [ "/bin/statsd_exporter" ]
|