Skip to content

Commit cfcf158

Browse files
committed
Export DockerContainerInspect
1 parent 80ec338 commit cfcf158

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Volumes listed in `iobBackup` are tagged for inclusion in ioBroker backup routin
180180
-->
181181

182182
## Changelog
183-
### 0.0.14 (2025-09-26)
183+
### **WORK IN PROGRESS**
184184
- (@GermanBluefox) Split the docker manager into pure docker commands and monitoring of own containers
185185

186186
### 0.0.3 (2025-09-25)

src/index.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ import type {
1111
DockerContainerInspect,
1212
DockerImageTagsResponse,
1313
VolumeInfo,
14+
ImageName,
15+
DiskUsage,
16+
DockerImageInspect,
17+
PortBinding,
18+
Protocol,
19+
Security,
20+
VolumeMount,
1421
} from './types';
1522
import { readFileSync } from 'node:fs';
1623
import JSON5 from 'json5';
@@ -32,6 +39,13 @@ export {
3239
type VolumeInfo,
3340
type DockerImageTagsResponse,
3441
type DockerContainerInspect,
42+
type ImageName,
43+
type DiskUsage,
44+
type DockerImageInspect,
45+
type PortBinding,
46+
type Protocol,
47+
type Security,
48+
type VolumeMount,
3549
};
3650

3751
export default class DockerPlugin extends PluginBase {

0 commit comments

Comments
 (0)