Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ISSUE-114: Update Xdebug settings for 1.0.0-RC3D9 #143

Merged
merged 2 commits into from
Nov 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ services:
php-debug:
container_name: esmero-php-debug
restart: always
image: esmero/php-7.3-fpm:development
image: esmero/php-7.4-fpm:1.0.0-dev-multiarch
environment:
- XDEBUG_SESSION_START="archipelago"
tty: true
networks:
- host-net
- esmero-net
volumes:
- ${PWD}:/var/www/html:cached
- ${PWD}/xdebug/xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
9 changes: 9 additions & 0 deletions xdebug/xdebug.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
zend_extension=xdebug

[xdebug]
xdebug.mode=develop,debug
; If your host system is Linux, host.docker.internal may not be available.
xdebug.client_host=host.docker.internal
; On linux comment xdebug.client_host=host.docker.internal and uncomment the following next line
;xdebug.discover_client_host=1
xdebug.start_with_request=yes