This commit is contained in:
RGJorge
2026-05-01 06:12:24 +00:00
parent c6da792e4b
commit f055489d81
5 changed files with 686 additions and 63 deletions
+7
View File
@@ -7,8 +7,15 @@ export interface Service {
status: string;
ports: { host: number; container: number }[];
networks: string[];
network_ips: Record<string, string>;
project: string;
compose_file: string;
env: string[];
restart_policy: string;
memory_limit: number;
cpu_quota: number;
health_status: string;
health_log: string[];
}
export interface Connection {