From 03c9d4f3909e0c984e729e8ad54574b628027e7e Mon Sep 17 00:00:00 2001 From: wn_ Date: Fri, 19 Jan 2024 16:19:07 +0000 Subject: [PATCH] Use APP_BASE in the web-nginx health check URL. --- .docker/web-nginx/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/web-nginx/Dockerfile b/.docker/web-nginx/Dockerfile index ab795dd8a..7b1af4e84 100644 --- a/.docker/web-nginx/Dockerfile +++ b/.docker/web-nginx/Dockerfile @@ -1,7 +1,7 @@ ARG PROXY_REGISTRY FROM ${PROXY_REGISTRY}nginx:alpine -HEALTHCHECK CMD curl --fail http://localhost/tt-rss/index.php || exit 1 +HEALTHCHECK CMD curl --fail http://localhost${APP_BASE}/index.php || exit 1 COPY .docker/web-nginx/nginx.conf /etc/nginx/templates/nginx.conf.template