From 7516b3b23422ac98826e38809cde9551d64651bf Mon Sep 17 00:00:00 2001 From: c41ms0n <193478517+c41ms0n@users.noreply.github.com> Date: Thu, 16 Apr 2026 03:08:50 +0300 Subject: [PATCH] chore: update TCP healthcheck for multiple mail services Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 60917e4..7e7ef90 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -47,7 +47,7 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* HEALTHCHECK --interval=30s --timeout=5s --retries=3 --start-period=120s \ - CMD /bin/bash -c "true < /dev/tcp/localhost/25" + CMD /bin/bash -c "true < /dev/tcp/localhost/25 && true < /dev/tcp/localhost/143 && true < /dev/tcp/localhost/1025 && true < /dev/tcp/localhost/1143" ENTRYPOINT ["/protonmail/entrypoint.sh"] CMD ["run"]