1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00

simpler healthcheck for postfix

This commit is contained in:
Thomas Sänger 2018-10-16 23:12:02 +02:00
parent 0bc901a722
commit a412951a30
No known key found for this signature in database
GPG Key ID: 057DDBB960D5382D
2 changed files with 1 additions and 10 deletions

View File

@ -7,11 +7,10 @@ RUN apk add --no-cache postfix postfix-pcre rsyslog \
COPY conf /conf
COPY start.py /start.py
COPY health.sh /health.sh
EXPOSE 25/tcp 10025/tcp
VOLUME ["/data"]
CMD /start.py
HEALTHCHECK CMD /health.sh
HEALTHCHECK CMD echo QUIT|nc localhost 25|grep "220 .* ESMTP Postfix"

View File

@ -1,8 +0,0 @@
#!/bin/sh
if [ "$(echo QUIT|nc localhost 25|tail -n1|cut -f1 -d ' ')" = "221" ]; then
echo "ping successful"
else
echo "ping failed"
exit 1
fi