From 5ffbbf06bbafc1a1ccaf46b4bfcfe8b21256c0ec Mon Sep 17 00:00:00 2001 From: Vitor Rodrigues Date: Sun, 8 Dec 2024 18:26:30 +0100 Subject: [PATCH] Fix filebrowser healthcheck The FB_PORT env variable is no longer set, so internally, within the container, port 80 is now always used. As health checks run inside the container the internal port needs to be used and not the host port. --- compose/.apps/filebrowser/filebrowser.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/.apps/filebrowser/filebrowser.yml b/compose/.apps/filebrowser/filebrowser.yml index 51fb4961c7..153071ee2d 100644 --- a/compose/.apps/filebrowser/filebrowser.yml +++ b/compose/.apps/filebrowser/filebrowser.yml @@ -9,7 +9,7 @@ services: healthcheck: test: - CMD-SHELL - - curl -fs http://localhost:${FILEBROWSER_PORT_80}/health || exit 1 + - curl -fs http://localhost:80/health || exit 1 restart: ${FILEBROWSER_RESTART} user: ${PUID}:${PGID} volumes: