-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker for Mac and docker network access from host #171
Comments
I would also be interested of the status on this. |
I would love to see this too. |
Something like suggested in this thread: https://forums.docker.com/t/support-tap-interface-for-direct-container-access-incl-multi-host/17835 |
+1 for addressing this |
+1 for this fix |
I believe this is the same issue I'm experiencing. If I start an nginx container that should proxy to some code running on my actual host, I can't do that anymore since upgrading from docker toolbox. I used to be able to proxy requests to 10.0.2.2 or whatever IP my host was given, but now the host has no IP (other than my DHCP given IP) for a reliable proxy destination. Very much a blocker for us, unless I'm missing something. (Edit): Per some looking around, moby/moby#22753 helped somewhat. I just added an alias on my host, and that seemingly has gotten me around the problem. |
As a workaround, I ended up using OpenVPN to access the Docker networks. My setup can be found here (easy to use Compose file): wojas/docker-mac-network |
+1 |
Closing as dup of #155. Please subscribe there for further updates |
I am pasting this for anyone who comes here and feels at a loss More details can be found here: |
@Multiply Yes it is. I don’t know how I managed to misread the URL, but I feel really silly now. :P Sorry about that! |
Closed issues are locked after 30 days of inactivity. If you have found a problem that seems similar to this, please open a new issue. Send feedback to Docker Community Slack channels #docker-for-mac or #docker-for-windows. |
Expected behavior
I can access all containers by ip address from my OSX host directly.
Actual behavior
I can't access containers by network unless I map ports to 127.0.0.1.
Information
Diagnostic ID: 13B73004-5CA7-40F3-B597-AA61D1FC6C37
Docker for Mac: 1.12.0 (Build 10871)
macOS: Version 10.11.6 (Build 15G31)
[OK] docker-cli
[OK] app
[OK] moby-syslog
[OK] disk
[OK] virtualization
[OK] system
[OK] menubar
[OK] osxfs
[OK] db
[OK] slirp
[OK] moby-console
[OK] logs
[OK] vmnetd
[OK] env
[OK] moby
[OK] driver.amd64-linux
Steps to reproduce the behavior
docker run --name=httpd -d httpd
docker inspect httpd
extract IPAddress from the output (e.g172.17.0.2
)curl http://172.17.0.2/
- expected to get the apache page, but get a timeoutNotes
I understand that the reason for this not working, is that this is due to the documented fact that there is no
docker0
interface available on osx (https://docs.docker.com/docker-for-mac/networking/#/there-is-no-docker0-bridge-on-osx).For our workflow (allowing the host to access containers directly from the host, without port mapping) it is pretty crucial. So my main question is, if there are plans to support this or if it is an impossible to overcome technical hurdle.
The text was updated successfully, but these errors were encountered: