Note: This project has been deprecated. I am refactoring these docs into a PHPStorm Debugging Guide which is currently a Pull Request.
Wiring up Laravel, LaraDock [Laravel+Docker] and PHPStorm to play nice together complete with remote xdebug'ing as icing on top!
Goal is to put together a sample Laravel project running on LaraDock that can run in a development environment complete with remote debugging.
This project is tested on Docker Native Windows.
This project assumes experience and familiarity with Laravel, LaraDock and PHPStorm before proceeding. The purpose of this project is to focus on how to get these three projects to work together in a PHPStorm development workflow.
- Hosts File Editor makes it easy to change your hosts file as well as archive multiple versions for easy retrieval.
- Set
laravel
to your docker host IP. See Example.
- Set
Install Laravel somewhere. See from perspective of LaraDock Installation.
- Example with Laravel Installer
laravel new laravel-laradock-phpstorm
cd laravel new laravel-laradock-phpstorm
git init
git add .
git commit -m "first commit"
git remote add origin git@github.com:LarryEitel/laravel-laradock-phpstorm.git
git push -u origin master
Since we will using LaraDock as a submodule,
# /c/_dk/laravel-laradock-phpstorm
git submodule add https://github.com/LaraDock/laradock.git
cd laradock
Since we will be hacking a bit on this, need to preserve refactoring with parent repo. So I will remote .git.
rm -rf .git*
The LaraDock workspace container is based on phusion/baseimage-docker.
This image provides support out of the box for SSH
although it is not enabled by default.
Although xdebug is installed, it is not switched on by default. This is so that tools like composer
will not be slowed down.
PHPStorm is configured to enable xdebug
on-demand when running unit tests. See PHPStorm Intepreters example.
- Set: INSTALL_XDEBUG=true
- Set: INSTALL_XDEBUG=true
- Note: xdebug is installed but disabled until switched on. See: Debug Web Site
NOTE: PHP_IDE_CONFIG="serverName=laravel" must point to a valid Build, Execution, Deployment > Deployment > Name
.
- If your containers are currently running, let's give it a restart.
docker-compose up -d mysql nginx
Make sure you are starting with a clean state. For example, do you have other LaraDock containers and images? Here are a few things I use to clean things up.
-
Delete all containers using
grep laradock_
on the names, see: Remove all containers based on docker image name.docker ps -a | awk '{ print $1,$2 }' | grep laradock_ | awk '{print $1}' | xargs -I {} docker rm {}
-
Delete all images containing
laradock
.docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {}
Note: This will only delete images that were built withLaraDock
, NOTlaradock/*
which are pulled down byLaraDock
such aslaradock/workspace
, etc. Note: Some may fail with:Error response from daemon: conflict: unable to delete 3f38eaed93df (cannot be forced) - image has dependent child images
-
I added this to my
.bashrc
to remove orphaned images.dclean() { processes=`docker ps -q -f status=exited` if [ -n "$processes" ]; thend docker rm $processes fi images=`docker images -q -f dangling=true` if [ -n "$images" ]; then docker rmi $images fi }
# barebones at this point
docker-compose up -d nginx mysql
# run
docker-compose ps
# Should see:
Name Command State Ports
-----------------------------------------------------------------------------------------------------------
laradock_mysql_1 docker-entrypoint.sh mysqld Up 0.0.0.0:3306->3306/tcp
laradock_nginx_1 nginx Up 0.0.0.0:443->443/tcp, 0.0.0.0:80->80/tcp
laradock_php-fpm_1 php-fpm Up 9000/tcp
laradock_volumes_data_1 true Exit 0
laradock_volumes_source_1 true Exit 0
laradock_workspace_1 /sbin/my_init Up 0.0.0.0:22->22/tcp
Assuming that you are in laradock folder.
ssh -i workspace/insecure_id_rsa root@laravel
Kitty KiTTY is a fork from version 0.67 of PuTTY.
- Here are some settings that work:
- right-click on
tests/ExampleTest.php
- Select:
Run 'ExampleTest.php'
orCtrl+Shift+F10
. - Should pass!! You just ran a remote test via SSH!
- Select:
- Open to edit:
tests/ExampleTest.php
- Add a BreakPoint on line 16:
$this->visit('/')
- right-click on
tests/ExampleTest.php
-
In case xDebug is disabled, from the
laradock
folder run:./xdebugPhpFpm start
.- To switch xdebug off, run:
./xdebugPhpFpm stop
- To switch xdebug off, run:
-
Start Remote Debugging
-
Open to edit:
bootstrap/app.php
-
Add a BreakPoint on line 14:
$app = new Illuminate\Foundation\Application(
-
Reload Laravel Site