What: lifecycle_state.py enumerates running/paused/created/exited/dead/restarting/scaffolding but Docker's actual state set also includes removing.
Why: A container in removing state is bucketed into the default branch, which can mislead the UI.
Approach: Add removing to the enum and map it to a "removing" pill in the template.
What:
lifecycle_state.pyenumeratesrunning/paused/created/exited/dead/restarting/scaffoldingbut Docker's actual state set also includesremoving.Why: A container in
removingstate is bucketed into the default branch, which can mislead the UI.Approach: Add
removingto the enum and map it to a "removing" pill in the template.