Add check_ssl_cert (replace check_dane)

This commit is contained in:
nemunaire 2022-02-06 10:26:07 +01:00
parent 21d1aee761
commit 1f3cf1ac12
1 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,7 @@ FROM alpine
RUN apk add --no-cache \ RUN apk add --no-cache \
ca-certificates \ ca-certificates \
curl \ curl \
file \
iputils \ iputils \
mailx \ mailx \
nagios \ nagios \
@ -23,6 +24,7 @@ RUN apk add --no-cache \
nagios-web \ nagios-web \
nrpe-plugin \ nrpe-plugin \
openssh-client-common \ openssh-client-common \
openssl \
perl \ perl \
python3 \ python3 \
py3-dnspython \ py3-dnspython \
@ -34,8 +36,9 @@ COPY FREE_send_notification.sh /usr/bin/FREE_send_notification.sh
COPY entrypoint.sh /docker-entrypoint.sh COPY entrypoint.sh /docker-entrypoint.sh
ADD https://raw.githubusercontent.com/stump/check_sshfp/master/check_sshfp /usr/lib/nagios/plugins/check_sshfp ADD https://raw.githubusercontent.com/stump/check_sshfp/master/check_sshfp /usr/lib/nagios/plugins/check_sshfp
ADD https://raw.githubusercontent.com/matteocorti/check_ssl_cert/master/check_ssl_cert /usr/lib/nagios/plugins/check_ssl_cert
ADD https://gist.githubusercontent.com/nemunaire/9669659/raw/977cfce7246249c17e213b0b2b231220257754fa/nagios-status.pl /usr/bin/nagios-status.pl ADD https://gist.githubusercontent.com/nemunaire/9669659/raw/977cfce7246249c17e213b0b2b231220257754fa/nagios-status.pl /usr/bin/nagios-status.pl
RUN chmod +x /usr/lib/nagios/plugins/check_sshfp /usr/bin/nagios-status.pl RUN chmod +x /usr/lib/nagios/plugins/check_sshfp /usr/lib/nagios/plugins/check_ssl_cert /usr/bin/nagios-status.pl
ENTRYPOINT ["/docker-entrypoint.sh"] ENTRYPOINT ["/docker-entrypoint.sh"]
USER nagios USER nagios