fix: set correct port in docker healthcheck (#2812)

When the `FB_PORT` environment variable is set, respect its value. Otherwise, pick the port from the configuration.
This commit is contained in:
Emmanuel Frecon 2023-11-08 17:59:46 +01:00 committed by GitHub
parent a4cb813ddf
commit d59ad594b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh
PORT=$(jq .port /.filebrowser.json)
PORT=${FB_PORT:-$(jq .port /.filebrowser.json)}
curl -f http://localhost:$PORT/health || exit 1