Unraid 7.2+ is moving the Docker page toward the organizer-based UI backed by the GraphQL API. When the legacy page goes, these FV3 integration points break:
- DOM row manipulation on
DockerContainers.php output (createFolders() in docker.js, dashboard.js docker section)
- The
$.ajaxPrefilter on UserPrefs.php (drag-reorder renumbering) and the ajaxComplete hooks on UserPrefs.php/UpdateConfig.php that re-assert autostart order (fixes #110/#111/#116)
- The Autostart tab's toggle passthrough to
UpdateConfig.php
resetSorting() monkey-patch
Already API-side and safe: the Autostart tab's order/wait persistence (server-side file writes via sync_order.php/update_autostart.php), and the organizer mirror incl. the ownership registry (as of 2026.08.01.6).
When the new UI lands: rebuild folder rendering on the organizer view, replace the legacy hooks with GraphQL mutations (moveDockerItemsToPosition, autostart equivalents), and re-verify the custom start-order re-assert path end to end.
Unraid 7.2+ is moving the Docker page toward the organizer-based UI backed by the GraphQL API. When the legacy page goes, these FV3 integration points break:
DockerContainers.phpoutput (createFolders()in docker.js, dashboard.js docker section)$.ajaxPrefilteronUserPrefs.php(drag-reorder renumbering) and theajaxCompletehooks onUserPrefs.php/UpdateConfig.phpthat re-assert autostart order (fixes #110/#111/#116)UpdateConfig.phpresetSorting()monkey-patchAlready API-side and safe: the Autostart tab's order/wait persistence (server-side file writes via
sync_order.php/update_autostart.php), and the organizer mirror incl. the ownership registry (as of 2026.08.01.6).When the new UI lands: rebuild folder rendering on the organizer view, replace the legacy hooks with GraphQL mutations (
moveDockerItemsToPosition, autostart equivalents), and re-verify the custom start-order re-assert path end to end.