remcot
To properly check disk usage on your Enhance server and avoid bloated reported size from logical containers, try:
du --exclude='/var/container_tmp/*' --exclude='/var/lib/docker/*' --exclude='/var/local/enhance/*' --exclude='/proc' --exclude='/sys' -h / 2>/dev/null | awk '$1 ~ /[0-9]G/'
To find the largest accounts:
du -sh /var/www/* | sort -rh
Or just the top 10:
du -sh /var/www/* | sort -rh | head -n 10
You can find more useful commands here.