1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-08-10 22:31:47 +02:00

Fix issue #2811. Clamav Healthcheck created zombie processes

This commit is contained in:
Dimitri Huisman
2023-06-28 08:33:04 +00:00
parent 69229436cf
commit 4cf9993117
2 changed files with 2 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ COPY start.py /
RUN echo $VERSION >/version
#EXPOSE 3310/tcp
HEALTHCHECK --start-period=350s CMD echo PING|nc localhost 3310|grep "PONG"
HEALTHCHECK CMD kill -0 `cat /run/clamd.pid` && kill -0 `cat /run/freshclam.pid`
VOLUME ["/data"]

View File

@@ -0,0 +1 @@
Healthcheck of clamav image created zombie processes