Ошибка отладки PhpStorm Docker: Xdebug: [Step Debug] Could not connect to debugging client. Tried: host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port)
В процессе отладки в IDE PhpStorm с помощью XDebug в Docker может вылететь такая ошибка:
Xdebug: [Step Debug] Could not connect to debugging client. Tried: host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port)
Может помочь добавление следующих строк в конфиги:
docker-compose.yml
1 2 |
extra_hosts: - "host.docker.internal:host-gateway" |
xdebug.ini
1 2 3 4 5 6 7 |
xdebug.mode=debug xdebug.discover_client_host=1 xdebug.start_with_request=yes ; idekey value is specific to PhpStorm xdebug.idekey=PHPSTORM xdebug.client_host=host.docker.internal |
Recommended Posts
Что такое docker:dind и как он работает?
22.03.2023
Что такое Kubernetes
10.02.2023