Switched over to using Docker API
ToDo: Change location to actual location
This commit is contained in:
parent
c77fc44172
commit
a1bf08ddce
4 changed files with 36 additions and 11 deletions
interfaces
|
@ -32,6 +32,7 @@ export enum Status {
|
|||
|
||||
export enum ServiceLocation {
|
||||
brr7_4800u = "brr7-4800u",
|
||||
tower_0 = "tower-0",
|
||||
other = ""
|
||||
}
|
||||
|
||||
|
|
9
interfaces/DockerStatus.ts
Normal file
9
interfaces/DockerStatus.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
export interface DockerInfo {
|
||||
name: string,
|
||||
status: DockerStatus,
|
||||
id: string
|
||||
}
|
||||
|
||||
export enum DockerStatus {
|
||||
running = "running",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue