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.pull/2843/head
parent
a4cb813ddf
commit
d59ad594b8
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
PORT=$(jq .port /.filebrowser.json)
|
PORT=${FB_PORT:-$(jq .port /.filebrowser.json)}
|
||||||
curl -f http://localhost:$PORT/health || exit 1
|
curl -f http://localhost:$PORT/health || exit 1
|
||||||
|
|
Loading…
Reference in New Issue