Fix rootfs location and update s6

This commit is contained in:
Jamie Curnow
2024-05-09 08:54:59 +10:00
parent ecc3b2b5b7
commit 42cd1f2866
3 changed files with 1 additions and 1 deletions

View File

@ -0,0 +1,7 @@
#!/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