docker_laravel環境でローカルxdebugとの連携

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003,//php.iniで設定したポート番号
"pathMappings": {
// ドキュメントルートではないので注意
// {docker上のプロジェクトpath}:{ローカルのプロジェクトpath}
"/var/www/src":"${workspaceRoot}/src"
},
// 停止しすぎてうざいのでignore
"ignore": [
"/var/www/vendor/*"
],
}
]
}

誤情報がネット上は多数あるので注意