Adds support for custom admin port via env var #3808

and documentation
This commit is contained in:
Jamie Curnow
2026-06-10 11:24:53 +10:00
parent a5db5ed156
commit a62c2a6dc3
13 changed files with 67 additions and 10 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ echo -e "${BLUE}❯ ${CYAN}Waiting for healthy: ${YELLOW}${SERVICE}${RESET}"
until [ "${HEALTHY}" = "healthy" ]; do
echo -n "."
sleep 1
HEALTHY="$(docker inspect -f '{{.State.Health.Status}}' $SERVICE)"
HEALTHY="$(docker inspect -f '{{.State.Health.Status}}' "$SERVICE")"
((LOOPCOUNT++))
if [ "$LOOPCOUNT" == "$LIMIT" ]; then