mirror of
https://github.com/Luzifer/promcertcheck.git
synced 2024-11-08 07:50:05 +00:00
Knut Ahlers
f33bab0447
which allows to monitor hosts having certificates signed by some self-hosted CA like Vault or easyrsa-PKI Signed-off-by: Knut Ahlers <knut@ahlers.me>
18 lines
508 B
Docker
18 lines
508 B
Docker
FROM golang:alpine
|
|
|
|
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
|
|
|
ADD . /go/src/github.com/Luzifer/promcertcheck
|
|
WORKDIR /go/src/github.com/Luzifer/promcertcheck
|
|
|
|
RUN set -ex \
|
|
&& apk add --update git ca-certificates \
|
|
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
|
|
&& apk del --purge git
|
|
|
|
EXPOSE 3000
|
|
|
|
VOLUME ["/data/certs"]
|
|
|
|
ENTRYPOINT ["/go/bin/promcertcheck"]
|
|
CMD ["--probe=https://www.google.com/", "--probe=https://www.facebook.com/"]
|