mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 01:10:54 +01:00
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
|
|
export const dockerContainerStates = [
|
||
|
|
"created",
|
||
|
|
"running",
|
||
|
|
"paused",
|
||
|
|
"restarting",
|
||
|
|
"exited",
|
||
|
|
"removing",
|
||
|
|
"dead",
|
||
|
|
] as const;
|
||
|
|
|
||
|
|
export type DockerContainerState = (typeof dockerContainerStates)[number];
|