XDebug:Windows + Docker + PHPStorm
我的操作系统是Windows10。我已经通过boot2docker镜像运行Docker。我使用的IDE是PHPStorm。我想要做的是使用XDebug进行调试,但是我没有使其运行。我在网上搜索并尝试了发现的示例,但没有帮助。有没有拥有相同架构的人可以帮助我?
编辑:Nginx ist在服务器上运行。
当前设置:
zend_extension=xdebug.soxdebug.remote_enable=1
xdebug.remote_autostart=0
xdebug.remote_connect_back=1
xdebug.remote_port=9000
xdebug.idekey=PhpStorm
主机是我为SSH连接的相同IP。路径映射已启用。调试器是Xdebug, 我已经使用特定的DBPg代理尝试过,但是没有成功
回答:
我知道了。我只是忘了转发港口。我必须通过运行容器docker run -d -p 80:80 -p 9000:9000 -v
/mnt/www/foo:/var/www/foo foo。
以上是 XDebug:Windows + Docker + PHPStorm 的全部内容, 来源链接: utcz.com/qa/414005.html