mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-07-13 03:20:29 +00:00
10 lines
223 B
Bash
Executable File
10 lines
223 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}
|
|
|
|
wget -q --spider http://$ADDRESS:$PORT/health || exit 1
|