add comment how to debug in test docker-compose file
This commit is contained in:
parent
d1bb939328
commit
8bc0a1e76b
1 changed files with 14 additions and 0 deletions
|
@ -4,6 +4,20 @@ version: '3'
|
|||
# Install docker and docker compose and than just run:
|
||||
# docker compose up
|
||||
|
||||
# To live debug in VSCode add this launch configuration to your .vscode/launch.json.
|
||||
# It assumes that the WordPress root-dir is your workspace root.
|
||||
#
|
||||
# {
|
||||
# "name": "Listen for PHPUnit",
|
||||
# "type": "php",
|
||||
# "request": "launch",
|
||||
# "port": 9003,
|
||||
# "pathMappings": {
|
||||
# "/app/": "${workspaceRoot}/wp-content/plugins/activitypub-event-extensions/",
|
||||
# "/tmp/wordpress/": "${workspaceRoot}/"
|
||||
# },
|
||||
# },
|
||||
|
||||
services:
|
||||
test-db:
|
||||
image: mariadb
|
||||
|
|
Loading…
Reference in a new issue