How to get php debug working on vscode+docker+wsl on windows

Ok so, I try to follow the official doc but it seems a bit old.
I am running docker desktop on windows with WSL container (the linux subssystem) so my php files are on \WSL.LOCALHOST\UBUNTU-22.04\home\user\devilbox\data\www\dev\htdocs
All is working good except for xdebug on vscode.
Can you help me with the steps of configuration?
many Thanks

FYI I managed to get this work. As I say the devilbox docs is old. The option for xdebug 3.x has changed.
So here the new options name:
xdebug.mode=debug
xdebug.start_with_request=yes
xdebug.client_host=host.docker.internal

;# 9003 is now the default (set this for old PhpStorm settings).
xdebug.client_port=9000