diff --git a/webui/html/index.html b/webui/html/index.html index c3eb0ad..cf40bd3 100644 --- a/webui/html/index.html +++ b/webui/html/index.html @@ -658,8 +658,11 @@ const podName = c.PodName || '-'; const image = c.Image || c.image || ''; const managed = c._dashboard_source || 'podman'; - const ports = (c._dashboard_published_ports || []).join(", ") - || (c.Ports || []).map(p => `${p.host_port}:${p.container_port}`).join(", "); + const inPod = !!(c.PodName && String(c.PodName).trim()); + const ports = inPod + ? '' // verberg bij pod-containers + : ((c._dashboard_published_ports || []).join(", ") + || (c.Ports || []).map(p => `${p.host_port}:${p.container_port}`).join(", ")); return `