make antivirus-healthcheck more understandable

master
Thomas Sänger 6 years ago
parent 040c1e529a
commit f0f5cea5d1
No known key found for this signature in database
GPG Key ID: 057DDBB960D5382D

@ -4,10 +4,11 @@ RUN apk add --no-cache clamav rsyslog wget clamav-libunrar
COPY conf /etc/clamav
COPY start.sh /start.sh
COPY health.sh /health.sh
EXPOSE 3310/tcp
VOLUME ["/data"]
CMD ["/start.sh"]
HEALTHCHECK CMD [ "$(echo PING | nc localhost 3310)" = "PONG" ]
HEALTHCHECK CMD /health.sh

@ -0,0 +1,8 @@
#!/bin/sh
if [ "$(echo PING | nc localhost 3310)" = "PONG" ]; then
echo "ping successful"
else
echo "ping failed"
exit 1
fi
Loading…
Cancel
Save