mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 21:28:15 -05:00
8 lines
195 B
Bash
8 lines
195 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euf -o pipefail
|
||
|
|
||
|
HEALTHY="$(curl --silent "http://127.0.0.1:3000/api" | jq --raw-output '.result.healthy')"
|
||
|
|
||
|
echo "Healthy: ${HEALTHY}"
|
||
|
[ "$HEALTHY" = 'true' ] || exit 1
|