README.md Debug your PHP in Docker with Intellij/PHPStorm and Xdebug For your local dev, create a Dockerfile that is based on your production image and simply install xdebug into it. Exemple: FROM php:5 RUN yes | pecl install xdebug \ && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_enable=on" >> /usr/lo