23 lines
592 B
Bash
23 lines
592 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Quick test script to start a few lightweight apps
|
||
|
|
# This validates the Docker setup without pulling large images
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
echo "🧪 Testing Docker setup with lightweight apps..."
|
||
|
|
echo ""
|
||
|
|
|
||
|
|
# Start just the placeholder apps and a few small services
|
||
|
|
docker compose up -d endurain morphos grafana searxng
|
||
|
|
|
||
|
|
echo ""
|
||
|
|
echo "✅ Test apps started!"
|
||
|
|
echo ""
|
||
|
|
echo "Test these URLs:"
|
||
|
|
echo " • Endurain: http://localhost:8084"
|
||
|
|
echo " • MorphOS: http://localhost:8081"
|
||
|
|
echo " • Grafana: http://localhost:3000"
|
||
|
|
echo " • SearXNG: http://localhost:8082"
|
||
|
|
echo ""
|