Skip to content

Instantly share code, notes, and snippets.

@streamtw
Last active October 2, 2023 05:13
Show Gist options
  • Save streamtw/44e6aff2dfa535ce59bb9a1c8cd39392 to your computer and use it in GitHub Desktop.
Save streamtw/44e6aff2dfa535ce59bb9a1c8cd39392 to your computer and use it in GitHub Desktop.
Run Composer in docker
# install docker image of Composer
docker pull composer
# create alias in host machine
alias composer='docker run --rm -v $(pwd):/app composer'
# run Composer commands in host machine using container
composer --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment