mirror of
https://github.com/caprover/caprover
synced 2026-05-03 18:20:32 +00:00
15 lines
305 B
TypeScript
15 lines
305 B
TypeScript
interface ServerDockerInfo {
|
|
nodeId: string
|
|
type: 'manager' | 'worker'
|
|
isLeader: boolean
|
|
hostname: string
|
|
architecture: string
|
|
operatingSystem: string
|
|
nanoCpu: number
|
|
memoryBytes: number
|
|
dockerEngineVersion: string
|
|
ip: string
|
|
state: string
|
|
status: string
|
|
}
|