This commit is contained in:
RGJorge
2026-05-02 00:44:13 +00:00
parent f055489d81
commit afe99108b2
9 changed files with 642 additions and 76 deletions
+4 -1
View File
@@ -3,7 +3,7 @@ export interface Service {
uid: string;
name: string;
image: string;
state: "running" | "exited" | "paused" | "restarting" | "dead";
state: "running" | "exited" | "paused" | "restarting" | "dead" | "crashed";
status: string;
ports: { host: number; container: number }[];
networks: string[];
@@ -16,6 +16,9 @@ export interface Service {
cpu_quota: number;
health_status: string;
health_log: string[];
exit_code: number;
restart_count: number;
oom_killed: boolean;
}
export interface Connection {