Merge branch 'bugfix/web-nginx-healthcheck' into 'master'

Use APP_BASE in the web-nginx health check URL.

See merge request tt-rss/tt-rss!21
This commit is contained in:
Andrew Dolgov 2024-01-19 20:13:00 +00:00
commit a86df7eac8
1 changed files with 1 additions and 1 deletions

View File

@ -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