Files
minecraft-server-configs/schedule-restart.sh
2025-11-25 18:22:45 +01:00

17 lines
310 B
Bash
Executable File

#!/bin/bash
check_online() {
docker compose exec spigot rcon list \
| grep "^There are 0 of a max of" > /dev/null
}
while ! check_online; do
echo "Players are still online; re-checking in 60 seconds ..."
sleep 60
done
echo "No players are online; restarting now ..."
docker compose up -d spigot