mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-06-19 07:42:58 +00:00
10 lines
214 B
Bash
Executable File
10 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
PORT=${FB_PORT:-$(jq -r .port /config/settings.json)}
|
|
ADDRESS=${FB_ADDRESS:-$(jq -r .address /config/settings.json)}
|
|
ADDRESS=${ADDRESS:-localhost}
|
|
|
|
curl -f http://$ADDRESS:$PORT/health || exit 1
|