#!/usr/bin/env bash
echo "== NPM-Netzwerke =="
docker inspect nginx-proxy-manager --format '{{range $k,$v := .NetworkSettings.Networks}}{{$k}} {{end}}'; echo
echo "== Pterodactyl-Container =="
docker ps --format '{{.Names}} :: {{.Image}}' | grep -iE 'ptero|wings|gamehost|worldgigant' || echo "keine gefunden"
echo "== Wings-API (Pterodactyl Daemon) Port? =="
docker ps --format '{{.Names}} {{.Ports}}' | grep -iE 'wings|ptero' || echo "-"
echo "== ufw =="
ufw status 2>/dev/null | head -20 || echo "kein ufw / kein Zugriff"
echo "== RAM/Load =="
free -h | grep Mem
uptime
echo "== projectcat api erreichbar? =="
curl -s http://localhost:8090/health || echo "nicht erreichbar"
