Originally created by @tobiasreichel on GitHub (Jun 20, 2020).
Little Problem i have no connetion inside docker
container is connected to the default bridge network
but no connetion
any hint why?
Originally created by @tobiasreichel on GitHub (Jun 20, 2020).
Little Problem i have no connetion inside docker
container is connected to the default bridge network
but no connetion
any hint why?
Not attached to the bridge. Unless you are referring to the Docker container's bridge, which is a Docker issue.
Did you update to latest version?
docker pull sickcodes/docker-osx
@sickcodes commented on GitHub (Jun 20, 2020):
We are using user-mode networking.
https://github.com/sickcodes/Docker-OSX/blob/master/Dockerfile#L162
Not attached to the bridge. Unless you are referring to the Docker container's bridge, which is a Docker issue.
Did you update to latest version?
`docker pull sickcodes/docker-osx`
@sickcodes I'm facing the same issue, and the latest version didn't help. I'm running on Fedora 32 if that makes a difference, and the host has both ethernet & wifi.
Which as far as I understand should have opened port 50922 on the host, but that didn't happen either.
@jviotti commented on GitHub (Jun 23, 2020):
I started the VM using this command:
```
docker run -e RAM=6 --privileged -p 50922:10022 -e "DISPLAY=${DISPLAY:-:0.0}" -v /tmp/.X11-unix:/tmp/.X11-unix docker-osx:latest
```
Which as far as I understand should have opened port 50922 on the host, but that didn't happen either.
@jviotti commented on GitHub (Jun 23, 2020):
It seems to work if I run it like this:
```
docker run --privileged --net host -e "DISPLAY=${DISPLAY:-:0.0}" -e RAM=6 --cap-add=ALL -v /tmp/.X11-unix:/tmp/.X11-unix -v /dev:/dev -v /lib/modules:/lib/modules -v /var/run/libvirt/libvirt-sock:/var/run/libvirt/libvirt-sock docker-osx:latest
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @tobiasreichel on GitHub (Jun 20, 2020).
Little Problem i have no connetion inside docker
container is connected to the default bridge network
but no connetion
any hint why?
@sickcodes commented on GitHub (Jun 20, 2020):
We are using user-mode networking.
https://github.com/sickcodes/Docker-OSX/blob/master/Dockerfile#L162
Not attached to the bridge. Unless you are referring to the Docker container's bridge, which is a Docker issue.
Did you update to latest version?
docker pull sickcodes/docker-osx@sickcodes commented on GitHub (Jun 20, 2020):
If that fixed it, feel free to close the issue :)
@jviotti commented on GitHub (Jun 23, 2020):
@sickcodes I'm facing the same issue, and the latest version didn't help. I'm running on Fedora 32 if that makes a difference, and the host has both ethernet & wifi.
The host
ifconfigis:And the macOS VM says:
@jviotti commented on GitHub (Jun 23, 2020):
I started the VM using this command:
Which as far as I understand should have opened port 50922 on the host, but that didn't happen either.
@jviotti commented on GitHub (Jun 23, 2020):
It seems to work if I run it like this:
@sickcodes commented on GitHub (Jun 24, 2020):
Great to hear it works :)