mirror of
https://github.com/prometheus/statsd_exporter.git
synced 2024-11-10 17:31:07 +00:00
eb51631f33
It also updates the Circle CI configuration to use the Prometheus orb. Signed-off-by: Simon Pasquier <spasquie@redhat.com>
13 lines
440 B
Docker
13 lines
440 B
Docker
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
|
|
|
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
COPY .build/${OS}-${ARCH}/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" ]
|