diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index b31ce459..1c8c8134 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -289,17 +289,31 @@ docker-compose build workspace
a) open the `.env` file
-b) search for the `WORKSPACE_INSTALL_XDEBUG` argument under the Workspace Container +b) search for the `WORKSPACE_INSTALL_XDEBUG` argument under the Workspace settings
c) set it to `true`
-d) search for the `PHP_FPM_INSTALL_XDEBUG` argument under the PHP-FPM Container +d) search for the `PHP_FPM_INSTALL_XDEBUG` argument under the PHP-FPM settings
e) set it to `true` 2 - Re-build the containers `docker-compose build workspace php-fpm` For information on how to configure xDebug with your IDE and work it out, check this [Repository](https://github.com/LarryEitel/laravel-laradock-phpstorm) or follow up on the next section if you use linux and PhpStorm. +``` +########################################################### +################ Containers Customization ################# +########################################################### + +### WORKSPACE ############################################# +... +WORKSPACE_INSTALL_XDEBUG=true +... +### PHP_FPM ############################################### +... +PHP_FPM_INSTALL_XDEBUG=true +... +```