filebrowser/healthcheck.sh
Emmanuel Frecon c408d6427d
Follow $FB_PORT when set
When the `FB_PORT` environment variable is set, respect its value. Otherwise, pick the port from the configuration.
2023-11-06 18:59:24 +01:00

4 lines
106 B
Bash

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