mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-25 01:32:57 -04:00
b752310808
tail requires the -f/-F option to be passed just once, not between every log file.
7 lines
139 B
Plaintext
7 lines
139 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
TAIL_LOGS=$(echo "$LOGS_TO_STDOUT" | sed 's#|# #g')
|
|
|
|
echo "Executing: tail -F $TAIL_LOGS"
|
|
tail -F $TAIL_LOGS
|