add comment how to debug in test docker-compose file

This commit is contained in:
André Menrath 2024-09-24 12:26:18 +02:00
parent d1bb939328
commit 8bc0a1e76b

View file

@ -4,6 +4,20 @@ version: '3'
# Install docker and docker compose and than just run: # Install docker and docker compose and than just run:
# docker compose up # 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: services:
test-db: test-db:
image: mariadb image: mariadb