Skip to content

Instantly share code, notes, and snippets.

@lasekmiroslaw
Last active March 3, 2019 15:22
Show Gist options
  • Save lasekmiroslaw/449a9fcd6ab697d2bcff76ec8b73af51 to your computer and use it in GitHub Desktop.
Save lasekmiroslaw/449a9fcd6ab697d2bcff76ec8b73af51 to your computer and use it in GitHub Desktop.
Xdebug docker phpstorm
options
idea key PHPSTORM
# Configure xdebug
RUN echo $'error_reporting=E_ALL \n\
display_startup_errors=On \n\
display_errors=On \n\
xdebug.remote_enable=1 \n\
xdebug.remote_connect_back=1\n\
xdebug.idekey=PHPSTORM \n\
xdebug.remote_autostart=0 \n\
xdebug.remote_port=5902' >> /etc/php.d/15-xdebug.ini
zend_extension=xdebug.so
[Xdebug]
xdebug.remote_port=5902
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_autostart=0
xdebug.remote_connect_back=1
xdebug.idekey="PHPSTORM"
xdebug.profiler_enable=0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment