diff --git a/Dockerfile b/Dockerfile index 1955792..c3e1f50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:buster-slim +FROM alpine # Create main app folder to run from WORKDIR /app @@ -6,5 +6,10 @@ WORKDIR /app # Copy compiled binary to release image # (must build the binary before running docker build) COPY fail2ban_exporter /app/fail2ban_exporter +COPY health /app/health + +# Setup a healthcheck +RUN apk add curl +HEALTHCHECK --interval=10s --timeout=4s CMD /app/health ENTRYPOINT ["/app/fail2ban_exporter"] diff --git a/health b/health new file mode 100755 index 0000000..473ab31 --- /dev/null +++ b/health @@ -0,0 +1,8 @@ +#!/bin/sh + +port=9191 +if [ ! -z $F2B_WEB_LISTEN_ADDRESS ]; then + port=`echo $F2B_WEB_LISTEN_ADDRESS | cut -d ":" -f 2 -` +fi + +curl --fail localhost:$port/metrics || exit 1