fix: rename application

This commit is contained in:
Markus Pesch 2023-07-09 12:57:07 +02:00
parent 5aee3ba3e7
commit c7b68277d5
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
3 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View File

@ -5,4 +5,4 @@ vendor/
build/
dist/
fail2ban_exporter
prometheus-fail2ban-exporter

View File

@ -8,7 +8,7 @@ RUN apt update --yes && \
make install \
PREFIX=/usr \
DESTDIR=/app \
EXECUTABLE=fail2ban_exporter
EXECUTABLE=prometheus-fail2ban-exporter
FROM docker.io/library/debian:10-slim
@ -16,4 +16,4 @@ COPY --from=build /app /
EXPOSE 9191
ENTRYPOINT [ "/usr/bin/fail2ban_exporter" ]
ENTRYPOINT [ "/usr/bin/prometheus-fail2ban-exporter" ]

View File

@ -1,6 +1,6 @@
DESTDIR?=
PREFIX?=/usr/local
EXECUTABLE?=fail2ban_exporter
EXECUTABLE?=prometheus-fail2ban-exporter
CONTAINER_RUNTIME?=$(shell which docker)