mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-29 19:50:53 -04:00
7 lines
209 B
Plaintext
7 lines
209 B
Plaintext
## !/usr/bin/with-contenv bash
|
|
|
|
# Loop until an active internet connection is established
|
|
until $(curl --max-time 60 -s -o /dev/null https://www.linuxserver.io/); do
|
|
# Sleep to allow cooldown
|
|
sleep 10
|
|
done |