Skip to content

Instantly share code, notes, and snippets.

View carstenwindler's full-sized avatar

Carsten Windler carstenwindler

View GitHub Profile
@carstenwindler
carstenwindler / xdebug.sh
Last active February 6, 2024 08:20
Bash script to quickly enable / disable xdebug in a PHP docker container
#!/usr/bin/env bash
# see https://carstenwindler.de/php/enable-xdebug-on-demand-in-your-local-docker-environment/
if [ "$#" -ne 1 ]; then
SCRIPT_PATH=`basename "$0"`
echo "Usage: $SCRIPT_PATH enable|disable"
exit 1;
fi
# Expects service to be called app in docker-compose.yml