mirror of
https://github.com/prometheus-community/bind_exporter.git
synced 2025-04-18 13:04:01 +03:00
13 lines
333 B
Docker
13 lines
333 B
Docker
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:glibc
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
|
|
|
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
COPY .build/${OS}-${ARCH}/bind_exporter /bin/bind_exporter
|
|
|
|
EXPOSE 9119
|
|
USER nobody
|
|
ENTRYPOINT [ "/bin/bind_exporter" ]
|