Speichernutzung per SSH auslesen
Befehl auf dem Cloudron-Server ausführen – Ausgabe als GB-Werte in die Felder unten eintragen:
for dir in /home/yellowtent/appsdata/*/; do domain=$(python3 -c "import json; d=json.load(open('${dir}config.json')); print(d.get('fqdn','?'))" 2>/dev/null); app=$(python3 -c "import json; d=json.load(open('${dir}config.json')); print(d.get('manifest',{}).get('id','?'))" 2>/dev/null); echo "$app" | grep -qi nextcloud && echo "$(du -sh ${dir}data 2>/dev/null | cut -f1) $domain"; done
→ Klicken zum Kopieren