dev #1

Merged
nocci merged 51 commits from dev into main 2026-03-06 16:31:29 +01:00
Showing only changes of commit 4ce50e2e43 - Show all commits

11
keep-alive.sh Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail
sleep_for=${KEEP_ALIVE_SECONDS:-86400}
echo "Keeping container alive (interval ${sleep_for}s). Press Ctrl+C to stop."
trap 'exit 0' TERM INT
while true; do
sleep "$sleep_for" &
wait $!
done