Skip to content

Instantly share code, notes, and snippets.

@florentdestremau
Created December 3, 2025 12:36
Show Gist options
  • Select an option

  • Save florentdestremau/90f2d43baf5f1ccf85859dee6846c815 to your computer and use it in GitHub Desktop.

Select an option

Save florentdestremau/90f2d43baf5f1ccf85859dee6846c815 to your computer and use it in GitHub Desktop.
Add this to any project with a php docker container
#!/bin/sh
arg=$*
if [ -z "$arg" ]; then
docker compose exec -ti php bash
else
docker compose exec -ti php $*
fi;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment