public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/Dockerfiles/watchdog/Dockerfile
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
FROM alpine:3.23
3
LABEL maintainer = "The Infrastructure Company GmbH <[email protected]>"
5
# Installation
6
RUN apk add --update \
7
&& apk add --no-cache nagios-plugins-smtp \
8
nagios-plugins-tcp \
9
nagios-plugins-http \
10
nagios-plugins-ping \
11
mariadb-client \
12
curl \
13
bash \
14
coreutils \
15
jq \
16
fcgi \
17
openssl \
18
nagios-plugins-mysql \
19
nagios-plugins-disk \
20
bind-tools \
21
redis \
22
perl \
23
perl-net-dns \
24
perl-io-socket-ssl \
25
perl-io-socket-inet6 \
26
perl-socket \
27
perl-socket6 \
28
perl-mime-lite \
29
perl-term-readkey \
30
tini \
31
tzdata \
32
whois \
33
&& curl https://raw.githubusercontent.com/mludvig/smtp-cli/v3.10/smtp-cli -o /smtp-cli \
34
&& chmod +x smtp-cli \
35
&& mkdir /usr/lib/mailcow
37
COPY watchdog.sh /watchdog.sh
38
COPY check_mysql_slavestatus.sh /usr/lib/nagios/plugins/check_mysql_slavestatus.sh
39
COPY check_dns.sh /usr/lib/mailcow/check_dns.sh
40
COPY client.cnf /etc/my.cnf.d/client.cnf
42
CMD ["/watchdog.sh"]