import type { IServiceRessources } from "./docker.js"; export interface IService { name: string; image: string; ports: { web: number; custom?: { [domain: string]: string }; }; resources?: IServiceRessources; domains: string[]; secrets: { [key: string]: string }; deploymentIds: string[]; deploymentDirectiveIds: string[]; }