You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cli): resolve -p 0 (auto-assign host port) to a real free port
`docker run -p 0:80` (or an auto-assign publish) picks a free host port; a3s-box
stored host port 0, which the shim/passt filters skip (host_port != 0) so it was
never forwarded and `port` printed literal 0. normalize_port_maps now resolves a
0 host port to a concrete free ephemeral port (claimed briefly via a
TcpListener), so it is forwarded and `port` shows the real number. Verified on
Linux: `-p 0:80` -> `80/tcp -> 0.0.0.0:36517`.
0 commit comments