entrypoint

This commit is contained in:
Tord-Vincent Heggland
2026-04-08 09:50:09 +02:00
parent 3fec08b203
commit b52d4a5080
3 changed files with 16 additions and 1 deletions

10
entrypoint.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
set -e
echo "Starting squeezelite..."
while true; do
/usr/bin/squeezelite "$@"
echo "squeezelite stopped. Restarting in 1s..."
sleep 1
done