
This is the IP of your host machine, where your IDE is installed. # the default port for XDebug 3 is 9003, not 9000

# Also, for PhpStorm, configuration tips could be found here: Your folder files-to-copy will contain a subfolder usr/local/etc/php/conf.d/ with the file xdebug.ini: # Parameters description could be found here: The branch xdebug_3_2 of XDebug is compatible with PHP of the image wordpress:6.2.0-php8.2-apache.īut if, for example, you tried to use the image wordpress:6.1.1-php8.2-apache with the branch xdebug_3_0 of XDebug, you would get the following error while building the image:Ĭhecking Check for supported PHP versions… configure: error: not supported. Please notice: In the Dockerfile above you need to use compatible versions of XDebug and PHP. To build on some particular version of the image. Or you can add the tag you need (like we added 6.2.0-php8.2-apache above). To build on the latest version of the image wordpress. In this Dockerfile, you can replace the first line with e.g. # works here, and we can use it to enable xdebug: # the helper script docker-php-ext-enable (defined for image `php`)

# and since `wordpress`, in turn, extends the official Docker image `php`, # Since this Dockerfile extends the official Docker image `wordpress`, # Copy xdebug.ini to /usr/local/etc/php/conf.d/

# Available branches of XDebug could be seen here: # Install XDebug from source as described here: XDebug 3įor XDebug 3, the Dockerfile of the cloned project will look like this: FROM wordpress:6.2.0-php8.2-apache Please notice: The easiest way to understand all this and start working with the code is to clone this project from GitHub.

Works both with PHP 8 and with some versions below it, e.g.
