You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: admin/app/services/system_service.ts
+13-7Lines changed: 13 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -223,29 +223,35 @@ export class SystemService {
223
223
224
224
/**
225
225
* Checks the current state of Docker containers against the database records and updates the database accordingly.
226
-
* It will mark services as not installed if their corresponding containers are not running, and can also handle cleanup of any orphaned records.
227
-
* Handles cases where a container might have been manually removed or is in an unexpected state, ensuring the database reflects the actual state of containers.
226
+
* It will mark services as not installed if their corresponding containers do not exist, regardless of their running state.
227
+
* Handles cases where a container might have been manually removed, ensuring the database reflects the actual existence of containers.
228
+
* Containers that exist but are stopped, paused, or restarting will still be considered installed.
0 commit comments