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 should be implemented now by 1.6.0 for the moby backend.
@jandubois Could you expand on what you mean by that? Is that only within the container network, or would you expect port binding [::1] to work?
With docker run -p 8080:80 nginx, docker ps reports the container's ports as 0.0.0.0:8080->80/tcp, :::8080->80/tcp. curl -4 "http://127.0.0.1:8080" succeeds, but curl -6 "http://[::1]:8080" fails with error curl: (7) Failed to connect to ::1 port 8080 after 5 ms: Couldn't connect to server. I would expect both to work.
Explicitly binding to IPv6 also doesn't work. With docker run -p '[::1]:8080:80' nginx, docker ps shows the container's ports as ::1:8080->80/tcp. Interestingly, connecting to 127.0.0.1 still succeeds and [::1] still fails in this case.
Problem Description
Rancher Desktop doesn't support IPv6 at present leading to problems using localhost for example.
Proposed Solution
Support IPV6
Additional Information
No response
Preflight Checklist
The text was updated successfully, but these errors were encountered: