Skip to content

Instantly share code, notes, and snippets.

@ijaureguialzo
Created October 3, 2021 05:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijaureguialzo/5b9ea8c247dc71315cf645e7eb477d64 to your computer and use it in GitHub Desktop.
Save ijaureguialzo/5b9ea8c247dc71315cf645e7eb477d64 to your computer and use it in GitHub Desktop.
Run PHP, Composer or Node from Docker
phpcli() {
docker run -it --rm --name php-cli \
--env "PHP_EXTENSIONS=gd intl" \
-v "$PWD:/usr/src/app" thecodingmachine/php:8.0.11-v4-cli-node16 \
"$1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment