diff --git a/compose.yaml b/compose.yaml index 7aceb8b..bf9312a 100644 --- a/compose.yaml +++ b/compose.yaml @@ -28,14 +28,7 @@ services: emby_logtail: image: alpine container_name: emby_logtail - - command: /bin/sh -c " - apk add --no-cache coreutils; - while true; do - find /config/logs -name '*.txt' -o -name '*.log' | sort | uniq > /tmp/files.txt - xargs -a /tmp/files.txt tail -F - sleep 5 - done" + command: /bin/sh -c "apk add --no-cache coreutils && while true; do find /config/logs -name '*.txt' -o -name '*.log' | sort | uniq > /tmp/files.txt && xargs -a /tmp/files.txt tail -n 0 -F; sleep 5; done" volumes: - /app-config/emby:/config:ro # Read-only Mount des Emby Config/Logs restart: unless-stopped