[Komodo] admin: Write Compose File: update compose.yaml

This commit is contained in:
komodo 2025-04-24 20:26:34 +00:00
parent 22e2a57dfd
commit 17ebebb221

View file

@ -26,11 +26,13 @@ services:
emby_chris_network: emby_chris_network:
emby_logtail: emby_logtail:
image: busybox:latest image: alpine
container_name: emby_logtail container_name: emby_logtail
command: /bin/sh -c " command: /bin/sh -c "
apk add --no-cache coreutils;
while true; do while true; do
find /config/logs -name '*.txt' | sort | uniq > /tmp/files.txt find /config/logs -name '*.txt' -o -name '*.log' | sort | uniq > /tmp/files.txt
xargs -a /tmp/files.txt tail -F xargs -a /tmp/files.txt tail -F
sleep 5 sleep 5
done" done"