16 lines
326 B
Bash
Executable file
16 lines
326 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "🚀 Starting monitoring stack..."
|
|
docker-compose up -d
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "❌ Failed to start containers. Check docker-compose logs."
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ Containers started. Waiting a few seconds for services to boot..."
|
|
sleep 5
|
|
|
|
echo ""
|
|
echo "🔍 Gathering service info:"
|
|
./stack-status.sh |