Update docker-compose.yml

updated message to correctly state 30 seconds instead of 10
This commit is contained in:
2026-06-02 19:28:24 -05:00
parent 8bd062219d
commit da604503ec
+1 -1
View File
@@ -27,7 +27,7 @@ services:
apk add --no-cache inotify-tools docker-cli &&
echo 'Watching /inbox for new files...' &&
while inotifywait -r -e moved_to -e create /inbox; do
echo 'New files detected! Waiting 10 seconds for transfer to finish...' &&
echo 'New files detected! Waiting 30 seconds for transfer to finish...' &&
sleep 30 &&
docker exec -u abc beets beet import -q /inbox
done