Skip to content

Commit cc1f332

Browse files
committed
Better parsing
1 parent dc1c7d2 commit cc1f332

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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.20 (2025-10-09)
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/lib/compose2config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -445,10 +445,10 @@ export function composeServiceToContainerConfig(serviceName: string | undefined,
445445
}
446446

447447
const cfg: ContainerConfig = {
448-
iobEnabled: labels?.iobEnabled as unknown as boolean, // default true
449-
iobStopOnUnload: labels?.iobStopOnUnload as unknown as boolean, // default false
450-
iobAutoImageUpdate: labels?.iobAutoImageUpdate as unknown as boolean, // default false
451-
iobMonitoringEnabled: labels?.iobMonitoringEnabled as unknown as boolean, // default false
448+
iobEnabled: labels?.iobEnabled !== 'false', // default true
449+
iobStopOnUnload: labels?.iobStopOnUnload === 'true', // default false
450+
iobAutoImageUpdate: labels?.iobAutoImageUpdate === 'true', // default false
451+
iobMonitoringEnabled: labels?.iobMonitoringEnabled === 'true', // default false
452452
iobWaitForReady:
453453
labels?.iobWaitForReady === 'true' ? true : labels?.iobWaitForReady === 'false' ? false : undefined, // default false
454454

0 commit comments

Comments
 (0)