Adjust healthchecks and fix docker test scripts

This commit is contained in:
Adam Outler
2025-11-23 15:23:25 +00:00
parent bbf49c3686
commit 274fd50a92
4 changed files with 1033 additions and 540 deletions

View File

@@ -21,12 +21,12 @@ log_success() {
}
# 1. Check if crond is running
if pgrep -f "crond" > /dev/null; then
log_success "crond is running"
if pgrep -f "supercronic" > /dev/null; then
log_success "supercronic is running"
else
log_error "crond is not running"
log_error "supercronic is not running"
fi
docker inspect --format='{{json .State.Health}}'
# 2. Check if php-fpm is running
if pgrep -f "php-fpm" > /dev/null; then
log_success "php-fpm is running"