#!/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"