We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The interface directory contains everything related to interfaces. Every interface starts with I.
CD.ts contains the following.
CD.ts
Interface
Structure
export interface ICD { name: string; image: string; env?: Array<ENV>; ports?: Array<PORTS>; webhookUrl: string; status: string; restartPolicy: "always" | "never" | "on_failure" | "unless_stopped"; }
export interface ENV { value: string; name: string; }
export interface PORTS { host: string; container: string; }
Docker.ts contains the following.
Docker.ts
export interface ICreateDockerCompose { name: string; image: string; restartPolicy: "always" | "never" | "on_failure" | "unless_stopped"; env?: ENV[]; ports?: PORTS[]; }