mirror of
https://github.com/prometheus/statsd_exporter.git
synced 2024-11-14 11:21:17 +00:00
38df95f440
Run statsd_exporter as `nobody`. Signed-off-by: Ben Kochie <superq@gmail.com>
9 lines
342 B
Docker
9 lines
342 B
Docker
FROM quay.io/prometheus/busybox:latest
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
|
|
|
COPY statsd_exporter /bin/statsd_exporter
|
|
|
|
USER nobody
|
|
EXPOSE 9102 9125 9125/udp
|
|
HEALTHCHECK CMD wget --spider -S "http://localhost:9102/metrics" -T 60 2>&1 || exit 1
|
|
ENTRYPOINT [ "/bin/statsd_exporter" ]
|