Kurt

Results 16 comments of Kurt

Thanks for the response! docker-machine ssh does work. How do you add the route on the VM?

Okay, will this still allow me to access the Docker host via IP address in a browser? I have a couple containers running on my Docker host -- one with...

Somehow adding the route is not working for me. I ran the command: ``` sudo route add -net 192.168.99.0/24 -interface vboxnet0 route: writing to routing socket: File exists add net...

@nathanleclaire sadly, this seems to be the right interface. ``` VBoxManage list hostonlyifs Name: vboxnet0 GUID: 786f6276-656e-4074-8000-0a0027000000 DHCP: Disabled IPAddress: 192.168.99.1 NetworkMask: 255.255.255.0 IPV6Address: IPV6NetworkMaskPrefixLength: 0 HardwareAddress: 0a:00:27:00:00:00 MediumType: Ethernet...

With the `-v` command, I get: ``` sudo route -v add -net 192.168.99.0/24 -interface vboxnet0 u: inet 192.168.99.0; u: link vboxnet0:a.0.27.0.0.0; RTM_ADD: Add Route: len 140, pid: 0, seq 1,...

@cloudsan42 I was not able to resolve this issue. Hoping that @nathanleclaire has a good suggestion. Found instructions on port forwarding in the [boot2docker docs](https://github.com/boot2docker/boot2docker#running-behind-a-vpn-cisco-anyconnect-etc) but that did not resolve...

@kelsin if only I could take that path. Security group would, and I quote, :scream: As it stands right now, I seem to be having difficulty connecting to VPN. @dantran...

@nathanleclaire those steps didn't work for me. Here's what happened: ``` $ docker-machine ssh default -L 2376:localhost:2376 -fN $ eval $(docker-machine env) Error checking TLS connection: Error checking and/or regenerating...

By docker host, what I mean is the Linux VM that is created by docker-machine on which the docker daemon is running. The `docker run` command allows you to specify...