diff --git a/backend/app/service/container.go b/backend/app/service/container.go index 51c234da6..14a5f7c2b 100644 --- a/backend/app/service/container.go +++ b/backend/app/service/container.go @@ -939,9 +939,9 @@ func simplifyPort(ports []types.Port) []string { return datas } if len(ports) == 1 { - itemPortStr := fmt.Sprintf("%v/%s", ports[0].PrivatePort, ports[0].Type) + itemPortStr := fmt.Sprintf("%s:%v/%s", ports[0].IP, ports[0].PrivatePort, ports[0].Type) if ports[0].PublicPort != 0 { - itemPortStr = fmt.Sprintf("%v->%v/%s", ports[0].PublicPort, ports[0].PrivatePort, ports[0].Type) + itemPortStr = fmt.Sprintf("%s:%v->%v/%s", ports[0].IP, ports[0].PublicPort, ports[0].PrivatePort, ports[0].Type) } datas = append(datas, itemPortStr) return datas