mirror of
https://github.com/Lusitaniae/apache_exporter.git
synced 2025-04-18 15:04:01 +03:00
12 lines
338 B
Docker
12 lines
338 B
Docker
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
|
|
LABEL maintainer="https://github.com/Lusitaniae, https://github.com/roidelapluie"
|
|
|
|
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
COPY .build/${OS}-${ARCH}/apache_exporter /bin/apache_exporter
|
|
|
|
EXPOSE 9117
|
|
USER nobody
|
|
ENTRYPOINT [ "/bin/apache_exporter" ] |