mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 19:29:17 +01:00
11 lines
408 B
TypeScript
11 lines
408 B
TypeScript
import type Docker from "dockerode";
|
|
|
|
export type { DockerInstance } from "./singleton";
|
|
export { DockerSingleton } from "./singleton";
|
|
export type { ContainerInfo, Container, Port } from "dockerode";
|
|
export type { Docker };
|
|
|
|
export const containerStates = ["created", "running", "paused", "restarting", "exited", "removing", "dead"] as const;
|
|
|
|
export type ContainerState = (typeof containerStates)[number];
|