interfaces/ts/data/service.ts

13 lines
287 B
TypeScript
Raw Normal View History

2024-02-18 19:08:52 +00:00
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 };
}