mirror of
https://github.com/azukaar/Cosmos-Server.git
synced 2026-01-06 04:09:53 -06:00
[skip ci] pre-0.14
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user