[skip ci] pre-0.14

This commit is contained in:
Yann Stepienik
2024-01-21 15:38:18 +00:00
parent 86996cb636
commit 355fc647b6
2 changed files with 3 additions and 2 deletions

View File

@@ -5,6 +5,7 @@
- Removed all sort of container bootstrapping (much faster boot)
- Added image clean up
- Replaced network clean up by vanilla docker prune
- Fixed display issue with container having no IP
## Version 0.13.0
- Display container stacks as a group in the UI

View File

@@ -31,12 +31,12 @@ export const NetworksColumns = (theme, isDark) => [
{
title: 'IPAM gateway / mask',
screenMin: 'lg',
field: (r) => r.IPAM.Config.map((config, index) => (
field: (r) => r.IPAM.Config ? r.IPAM.Config.map((config, index) => (
<Stack key={index}>
<div>{config.Gateway}</div>
<div>{config.Subnet}</div>
</Stack>
)),
)) : 'No Ip',
},
{
title: 'Created At',