Files
web_server/icecast2/entrypoint.sh
Adam French 469a225860
Some checks failed
Deploy with Docker Compose / deploy (push) Has been cancelled
Add fallback music to icecast server
2026-03-10 12:58:53 +00:00

13 lines
310 B
Bash
Executable File

#!/bin/bash
set -e
envsubst < /etc/icecast2/icecast.xml.template > /etc/icecast2/icecast.xml
envsubst < /etc/liquidsoap/stream.liq.template > /etc/liquidsoap/stream.liq
icecast2 -c /etc/icecast2/icecast.xml &
sleep 2
liquidsoap /etc/liquidsoap/stream.liq &
wait -n
kill $(jobs -p) 2>/dev/null || true
exit 1