Skip to content

Commit d0e4e87

Browse files
committed
fix proxy ingress ports
1 parent 2a37f54 commit d0e4e87

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/docker_service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def getPublishedPorts(self):
2727
continue
2828
for port in container.ports:
2929
if container.ports[port] == None:
30+
ports.append({"internal":port, "published":int(port.replace("/tcp", "").replace("/udp", ""))})
3031
continue
3132
publishedPort = container.ports[port][0]["HostPort"]
3233
ports.append({"internal":port, "published":int(publishedPort)})

0 commit comments

Comments
 (0)