]> &pluginsupportURL; ###2026.02.02 - Add Settings page for configurable container count limit - Add configurable refresh interval setting - Use Unraid built-in status colors for consistency - Drop redundant total memory from MEM USAGE column ###2026.02.01 - Initial Release **Docker Stats** Dashboard widget to visualize real-time resource usage of Docker containers. &gitURL;/v&version;/&name;-&version;.txz &md5; # Check if we are checking for updates or installing echo "Installing &name;..." # Create clean directory structure mkdir -p &emhttp; # Unpack the archive if it exists if [ -f "&plugin;/&name;-&version;.txz" ]; then echo "Extracting plugin files..." tar -xJf "&plugin;/&name;-&version;.txz" -C "/usr/local/emhttp/plugins/" fi # Initialize config if it doesn't exist if [ ! -f "&plugin;/&name;.cfg" ]; then echo "Creating default configuration..." cp &emhttp;/default.cfg &plugin;/&name;.cfg chmod 644 &plugin;/&name;.cfg fi # Ensure permissions chmod -R 755 &emhttp; chmod 644 &plugin;/&name;.cfg 2>/dev/null || true echo "" echo "----------------------------------------------------" echo " &name; has been installed." echo " Copyright 2026, &author;" echo " Version: &version;" echo "----------------------------------------------------" echo "" echo "Removing &name;..." removepkg &name;-&version; rm -rf &emhttp; rm -rf &plugin; echo "&name; has been removed"