Open deiviic opened 11 months ago
Drush aliases don't work the way they are setup at the moment.
Running lando drush @main uli gets stuck on: Connecting to http://ssh.dev.wdr.io/ [35.228.188.138] port 22.
lando drush @main uli
Connecting to http://ssh.dev.wdr.io/ [35.228.188.138] port 22.
Seems the reason is because docker is running on it's own network, despite the host being connected to the VPN.
If container was ran and accessed via docker run ... then --net host option can be added and then the jumphost is reachable.
docker run ...
--net host
lando drush @main uli works for me (Mac) when Lando / Docker is running.
This is an issue on Linux machines.
Drush aliases don't work the way they are setup at the moment.
Running
lando drush @main uli
gets stuck on:Connecting to http://ssh.dev.wdr.io/ [35.228.188.138] port 22.
Seems the reason is because docker is running on it's own network, despite the host being connected to the VPN.
If container was ran and accessed via
docker run ...
then--net host
option can be added and then the jumphost is reachable.