From de2a2b5d475baff4fb9ef459e3956d159815c5eb Mon Sep 17 00:00:00 2001 From: rustmailer Date: Tue, 28 Jul 2026 14:11:46 +0800 Subject: [PATCH] fix: healthcheck with macvlan #329 --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 1e1e6d3..0698988 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -38,6 +38,6 @@ EXPOSE 15630 WORKDIR /data HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \ - CMD curl -fs http://localhost:15630/api/status || exit 1 + CMD curl -fs http://localhost:${BICHON_HTTP_PORT:-15630}/api/status || exit 1 CMD ["/opt/bichon/bichon-server"]