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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed
Gateway unreachable at localhost:5000 on macOS — the v0.2.2 publish used host
port 5000, which macOS reserves for the AirPlay Receiver (Control Center binds *:5000, including IPv6 ::1). Because localhost resolves to ::1 first on
macOS, the browser hit AirPlay instead of the IPv4-only Docker publish and never
reached the gateway. Remap the host side to 5001 (127.0.0.1:5001:5000;
container side stays 5000 to match the gateway's listenPort) → browse https://localhost:5001. Needs a container recreate to apply.