到目前为止,我还没有成功地让它发挥作用。
设置
本地计算机 - Windows 10,安装了 Cygwin、git bash 和 WSL2,安装了 Ubuntu;和 MacBook Air (Mojave)
主机 - 运行 Amazon Linux 2
Docker 容器的 AWS EC2 实例 - CentOS 7.8 运行带有 Xdebug 的 PHP
目标
利用从本地计算机到容器的反向隧道,从本地计算机远程调试容器中的 PHP 代码。
当 PHP 代码本地安装在主机上时,我已经得到了这个工作,所以问题不在于 Xdebug。一旦我将 PHP 代码移至容器中,调试就不再起作用。
我尝试过
设置从本地计算机到主机 EC2 实例的反向隧道是有效的。为此,我ssh -vvv -i "aws.pem" -R 9000:localhost:9000 user@ec2instance在终端、cygwin 或 git bash 中进行操作,并nc -z localhost 9000 || echo 'no tunnel open'在主机上进行测试。
当我docker exec -it container bash进入容器并运行 nc 时,隧道不可用。
我正在使用 docker-compose:
version: '2'
services:
web:
image: 'privateregistry/project/container:latest'
restart: always
container_name: web
ports:
- '8082:80'
- '447:443'
- '9000:9000'
volumes:
- '.:/var/www/project'
我尝试过映射 9000 端口和不映射 9000 端口。我尝试过 ssh 隧道的变体:
ssh -vvv -i "aws.pem" -R :9000:localhost:9000 user@ec2instance
ssh -vvv -i "aws.pem" -R 0.0.0.0:9000:localhost:9000 user@ec2instance
ssh -vvv -i "aws.pem" -R \*:9000:localhost:9000 user@ec2instance
ssh -vvv -i "aws.pem" -R 9000:172.20.0.2:9000 user@ec2instance(容器IP)
我也尝试过使用ssh -L但没有运气。
有几篇文章(例如这篇文章)GatewayPorts yes建议在主机上添加。我也尝试过这个,没有任何改变。
我没有尝试使用--network=host,主要是出于安全考虑。我也不想使用 ngrok,因为我希望能够使用 localhost 或host.docker.internal进行xdebug.remote_host设置。
为了完整起见,以下是我对 Xdebug 的了解:
[XDebug]
xdebug.remote_enable=1
xdebug.remote_autostart=1
xdebug.remote_handler="dbgp"
xdebug.remote_port=9000
xdebug.remote_host="host.docker.internal"
;xdebug.remote_connect_back=1
xdebug.idekey = VSCODE
xdebug.remote_log = "/var/log/xdebug.log"
繁花不似锦