Switched over to using Docker API

ToDo: Change location to actual location
This commit is contained in:
Neshura 2023-03-14 22:13:49 +01:00
parent c77fc44172
commit a1bf08ddce
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
4 changed files with 36 additions and 11 deletions

View file

@ -32,6 +32,7 @@ export enum Status {
export enum ServiceLocation {
brr7_4800u = "brr7-4800u",
tower_0 = "tower-0",
other = ""
}

View file

@ -0,0 +1,9 @@
export interface DockerInfo {
name: string,
status: DockerStatus,
id: string
}
export enum DockerStatus {
running = "running",
}