export interface DockerInfo { name: string, status: DockerStatus, id: string } export enum DockerStatus { running = "running", }