mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
12 lines
434 B
TypeScript
12 lines
434 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];
|
|
export * from "./labels";
|