mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
Show containers IPv4Address in network
This commit is contained in:
parent
80af149b02
commit
52e629b69a
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ func (gui *Gui) networkConfigStr(network *commands.Network) string {
|
|||
if len(network.Network.Containers) > 0 {
|
||||
output += "\n"
|
||||
for _, v := range network.Network.Containers {
|
||||
output += utils.FormatMapItem(padding, v.Name, v.EndpointID)
|
||||
output += utils.FormatMapItem(padding, v.Name, v.IPv4Address)
|
||||
}
|
||||
} else {
|
||||
output += "none\n"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue