├── docker-compose.yml # Docker構成 ├── Dockerfile # Webサーバー設定 ├── html/ # CakePHP 5アプリケーション ├── docker/ # Docker設定ファイル │ ├── apache/ # Apache設定 │ ├── php/ # PHP・Xdebug設定 │ └── mysql/ # MySQL初期化 ├── ...
The Xdebug config happens in the Dockerfile. I recommend to look at it, escpeially the comments. The most important part is the xdebug.remote_host which has to be set to the Docker host. A sample ...