streamflow/scripts/stop.sh
2025-12-17 00:42:43 +00:00

17 lines
339 B
Bash
Executable file

#!/bin/bash
# StreamFlow IPTV - Stop Script
echo "🛑 Stopping StreamFlow IPTV..."
docker-compose down
if [ $? -eq 0 ]; then
echo "✅ StreamFlow has been stopped successfully."
else
echo "❌ Failed to stop StreamFlow. Please check for errors."
exit 1
fi
echo ""
echo "📝 To start again, run: ./start.sh or npm start"