mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
fixup inspect container struct
This commit is contained in:
parent
7bd7eed2a3
commit
00f05ae012
1 changed files with 14 additions and 16 deletions
|
|
@ -225,22 +225,20 @@ type Details struct {
|
||||||
IPPrefixLen int `json:"IPPrefixLen"`
|
IPPrefixLen int `json:"IPPrefixLen"`
|
||||||
IPv6Gateway string `json:"IPv6Gateway"`
|
IPv6Gateway string `json:"IPv6Gateway"`
|
||||||
MacAddress string `json:"MacAddress"`
|
MacAddress string `json:"MacAddress"`
|
||||||
Networks struct {
|
Networks map[string]struct {
|
||||||
ApdevDefault struct {
|
IPAMConfig interface{} `json:"IPAMConfig"`
|
||||||
IPAMConfig interface{} `json:"IPAMConfig"`
|
Links interface{} `json:"Links"`
|
||||||
Links interface{} `json:"Links"`
|
Aliases []string `json:"Aliases"`
|
||||||
Aliases []string `json:"Aliases"`
|
NetworkID string `json:"NetworkID"`
|
||||||
NetworkID string `json:"NetworkID"`
|
EndpointID string `json:"EndpointID"`
|
||||||
EndpointID string `json:"EndpointID"`
|
Gateway string `json:"Gateway"`
|
||||||
Gateway string `json:"Gateway"`
|
IPAddress string `json:"IPAddress"`
|
||||||
IPAddress string `json:"IPAddress"`
|
IPPrefixLen int `json:"IPPrefixLen"`
|
||||||
IPPrefixLen int `json:"IPPrefixLen"`
|
IPv6Gateway string `json:"IPv6Gateway"`
|
||||||
IPv6Gateway string `json:"IPv6Gateway"`
|
GlobalIPv6Address string `json:"GlobalIPv6Address"`
|
||||||
GlobalIPv6Address string `json:"GlobalIPv6Address"`
|
GlobalIPv6PrefixLen int `json:"GlobalIPv6PrefixLen"`
|
||||||
GlobalIPv6PrefixLen int `json:"GlobalIPv6PrefixLen"`
|
MacAddress string `json:"MacAddress"`
|
||||||
MacAddress string `json:"MacAddress"`
|
DriverOpts interface{} `json:"DriverOpts"`
|
||||||
DriverOpts interface{} `json:"DriverOpts"`
|
|
||||||
} `json:"apdev_default"`
|
|
||||||
} `json:"Networks"`
|
} `json:"Networks"`
|
||||||
} `json:"NetworkSettings"`
|
} `json:"NetworkSettings"`
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue