-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inspired by tjhop/linode-tagger#2
- Loading branch information
Showing
3 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# taken from https://github.com/prometheus/haproxy_exporter/blob/d4aba878f043fd3ad0bcacd0149e7d75e67c0faa/Dockerfile | ||
ARG ARCH="amd64" | ||
ARG OS="linux" | ||
# they don't tag versions only latest | ||
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest | ||
# https://github.com/prometheus/busybox | ||
LABEL maintainer="Will Bollock <[email protected]>" | ||
|
||
ARG ARCH="amd64" | ||
ARG OS="linux" | ||
COPY nagios_exporter /bin/nagios_exporter | ||
|
||
EXPOSE 9927 | ||
USER nobody | ||
ENTRYPOINT [ "/bin/nagios_exporter" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters