Compare commits
No commits in common. "antifascista" and "syslogize" have entirely different histories.
antifascis
...
syslogize
7 changed files with 36 additions and 32 deletions
|
@ -1,25 +1,25 @@
|
||||||
steps:
|
pipeline:
|
||||||
publish:
|
publish:
|
||||||
image: "docker.io/woodpeckerci/plugin-docker-buildx"
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
registry: "https://gitea.nulo.in"
|
registry: registry.nulo.in
|
||||||
username: "sutty"
|
username: sutty
|
||||||
repo: "gitea.nulo.in/sutty/monit"
|
repo: registry.nulo.in/sutty/monit
|
||||||
tags:
|
tags:
|
||||||
- "${ALPINE_VERSION}"
|
- ${ALPINE_VERSION}
|
||||||
- "latest"
|
- latest
|
||||||
build_args:
|
build_args:
|
||||||
- "ALPINE_VERSION=${ALPINE_VERSION}"
|
- ALPINE_VERSION=${ALPINE_VERSION}
|
||||||
- "BASE_IMAGE=gitea.nulo.in/sutty/sutty"
|
- BASE_IMAGE=alpine
|
||||||
purge: false
|
purge: false
|
||||||
password:
|
secrets:
|
||||||
from_secret: "DOCKER_PASSWORD"
|
- docker_password
|
||||||
when:
|
when:
|
||||||
branch: "antifascista"
|
branch: antifascista
|
||||||
event: "push"
|
event: push
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
ALPINE_VERSION:
|
||||||
- ALPINE_VERSION: "3.21.0"
|
- 3.16.1
|
||||||
- ALPINE_VERSION: "3.20.3"
|
- 3.15.5
|
||||||
- ALPINE_VERSION: "3.19.4"
|
- 3.14.7
|
||||||
- ALPINE_VERSION: "3.18.9"
|
- 3.13.11
|
||||||
|
|
21
Dockerfile
21
Dockerfile
|
@ -1,30 +1,39 @@
|
||||||
ARG ALPINE_VERSION=3.18.3
|
ARG ALPINE_VERSION=3.13.6
|
||||||
ARG BASE_IMAGE=gitea.nulo.in/sutty/sutty
|
ARG BASE_IMAGE=alpine
|
||||||
FROM ${BASE_IMAGE}:${ALPINE_VERSION} AS build
|
FROM ${BASE_IMAGE}:${ALPINE_VERSION} as build
|
||||||
|
|
||||||
|
RUN apk add --no-cache tzdata
|
||||||
|
|
||||||
COPY ./monitrc /etc/monitrc
|
COPY ./monitrc /etc/monitrc
|
||||||
RUN chmod 600 /etc/monitrc
|
RUN chmod 600 /etc/monitrc
|
||||||
|
|
||||||
FROM ${BASE_IMAGE}:${ALPINE_VERSION}
|
FROM ${BASE_IMAGE}:${ALPINE_VERSION}
|
||||||
LABEL org.opencontainers.image.authors="f@sutty.nl"
|
ARG ALPINE_VERSION
|
||||||
|
MAINTAINER "f <f@sutty.nl>"
|
||||||
ENV EMAIL=monit@sutty.nl
|
ENV EMAIL=monit@sutty.nl
|
||||||
ENV EMAIL_FROM=monit@sutty.nl
|
ENV EMAIL_FROM=monit@sutty.nl
|
||||||
ENV MMONIT=mmmonit.athshe.sutty.nl
|
ENV MMONIT=mmmonit.athshe.sutty.nl
|
||||||
ENV CREDENTIALS=mmmonit:mmmonit.athshe.sutty.nl
|
ENV CREDENTIALS=mmmonit:mmmonit.athshe.sutty.nl
|
||||||
|
|
||||||
|
# Locale
|
||||||
|
ENV LANG="C.UTF-8"
|
||||||
|
|
||||||
|
# Sutty's repository
|
||||||
|
RUN echo ${ALPINE_VERSION} | cut -d . -f 1,2 | xargs -I {} echo https://alpine.sutty.nl/alpine/v{}/sutty | tee -a /etc/apk/repositories
|
||||||
|
RUN wget https://alpine.sutty.nl/alpine/sutty.pub -O /etc/apk/keys/alpine@sutty.nl-5ea884cd.rsa.pub
|
||||||
|
|
||||||
# Install monit and remove default config
|
# Install monit and remove default config
|
||||||
RUN apk add --no-cache tini monit knsupdate
|
RUN apk add --no-cache tini monit knsupdate
|
||||||
|
COPY --from=build /usr/share/zoneinfo/UTC /etc/localtime
|
||||||
|
|
||||||
# Create directories
|
# Create directories
|
||||||
RUN install -dm 2750 -o root -g root /etc/monit.d
|
RUN install -dm 2750 -o root -g root /etc/monit.d
|
||||||
RUN install -dm 2750 -o root -g root /etc/monit.d/external/
|
|
||||||
RUN install -dm 2750 -o root -g root /var/lib/monit
|
RUN install -dm 2750 -o root -g root /var/lib/monit
|
||||||
|
|
||||||
# Install config
|
# Install config
|
||||||
COPY --from=build /etc/monitrc /etc/monitrc
|
COPY --from=build /etc/monitrc /etc/monitrc
|
||||||
COPY ./nsupdate.sh /usr/local/bin/nsupdate
|
COPY ./nsupdate.sh /usr/local/bin/nsupdate
|
||||||
COPY ./whatsmyip6.sh /usr/local/bin/whatsmyip6
|
COPY ./whatsmyip6.sh /usr/local/bin/whatsmyip6
|
||||||
COPY ./whatsmydefaulteth.sh /usr/local/bin/whatsmydefaulteth
|
|
||||||
COPY ./syslogize.sh /usr/local/bin/syslogize
|
COPY ./syslogize.sh /usr/local/bin/syslogize
|
||||||
COPY ./zeroconf.sh /usr/local/bin/zeroconf
|
COPY ./zeroconf.sh /usr/local/bin/zeroconf
|
||||||
COPY ./zeroconf.conf /etc/zeroconf.conf
|
COPY ./zeroconf.conf /etc/zeroconf.conf
|
||||||
|
|
1
monitrc
1
monitrc
|
@ -18,4 +18,3 @@ check program zeroconf
|
||||||
if status = 0 then unmonitor
|
if status = 0 then unmonitor
|
||||||
|
|
||||||
include /etc/monit.d/*.conf
|
include /etc/monit.d/*.conf
|
||||||
include /etc/monit.d/external/*.conf
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
ip -6 r | grep default | tr -s " " | cut -d " " -f 5
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
ip address show ${1:-$(whatsmydefaulteth)} | grep inet6 | grep global | tr -s " " | cut -d " " -f 3 | cut -d / -f 1
|
ip address show ${1:-eth0} | grep inet6 | grep global | tr -s " " | cut -d " " -f 3 | cut -d / -f 1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
set mmonit http://@@MMONIT@@/collector
|
set mmonit http://@@MMONIT@@/collector
|
||||||
set mailserver @@POSTFIX@@ port 25 using hostname @@HOSTNAME@@
|
set mailserver postfix port 25 using hostname @@HOSTNAME@@
|
||||||
|
|
||||||
set alert @@EMAIL@@
|
set alert @@EMAIL@@
|
||||||
|
|
||||||
|
@ -11,6 +11,6 @@ set mail-format {
|
||||||
|
|
||||||
set httpd port 2812
|
set httpd port 2812
|
||||||
allow localhost
|
allow localhost
|
||||||
allow 10.13.12.0/24
|
allow 172.0.0.0/8
|
||||||
allow "fd00:acab::/32"
|
allow "fd00:acab::/32"
|
||||||
allow @@CREDENTIALS@@
|
allow @@CREDENTIALS@@
|
||||||
|
|
|
@ -13,7 +13,6 @@ sed -re "s/@@EMAIL@@/${EMAIL}/" \
|
||||||
-e "s/@@HOSTNAME@@/${EMAIL_FROM#*@}/" \
|
-e "s/@@HOSTNAME@@/${EMAIL_FROM#*@}/" \
|
||||||
-e "s/@@MMONIT@@/${MMONIT}/" \
|
-e "s/@@MMONIT@@/${MMONIT}/" \
|
||||||
-e "s/@@CREDENTIALS@@/${CREDENTIALS}/" \
|
-e "s/@@CREDENTIALS@@/${CREDENTIALS}/" \
|
||||||
-e "s/@@POSTFIX@@/${POSTFIX:-postfix}/" \
|
|
||||||
/etc/zeroconf.conf > /etc/monit.d/zeroconf.conf
|
/etc/zeroconf.conf > /etc/monit.d/zeroconf.conf
|
||||||
|
|
||||||
monit -t
|
monit -t
|
||||||
|
|
Loading…
Reference in a new issue