Merge branch 'main' into rework/cards
This commit is contained in:
commit
3f077029c6
13 changed files with 166 additions and 172 deletions
interfaces
|
@ -35,6 +35,7 @@ export enum Status {
|
|||
|
||||
export enum ServiceLocation {
|
||||
brr7_4800u = "brr7-4800u",
|
||||
tower_0 = "tower-0",
|
||||
other = ""
|
||||
}
|
||||
|
||||
|
|
11
interfaces/DockerStatus.ts
Normal file
11
interfaces/DockerStatus.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { ServiceLocation } from './CardTypes';
|
||||
export interface DockerInfo {
|
||||
name: string,
|
||||
status: DockerStatus,
|
||||
id: string
|
||||
location: ServiceLocation,
|
||||
}
|
||||
|
||||
export enum DockerStatus {
|
||||
running = "running",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue