1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-01-06 13:39:16 +00:00

unbound: increase check interval to 30s

This commit is contained in:
DerLinkman
2024-02-08 12:23:46 +01:00
parent 583c5b48a0
commit 63bb8e8cef
2 changed files with 3 additions and 3 deletions

View File

@@ -20,10 +20,10 @@ EXPOSE 53/udp 53/tcp
COPY docker-entrypoint.sh /docker-entrypoint.sh
# healthcheck (nslookup)
# healthcheck (dig, ping, nc)
COPY healthcheck.sh /healthcheck.sh
RUN chmod +x /healthcheck.sh
HEALTHCHECK --interval=5s --timeout=30s CMD [ "/healthcheck.sh" ]
HEALTHCHECK --interval=30s --timeout=30s CMD [ "/healthcheck.sh" ]
ENTRYPOINT ["/docker-entrypoint.sh"]