Skip to content

Instantly share code, notes, and snippets.

@jamesratcliffe
Last active March 24, 2022 12:48
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 jamesratcliffe/c65d17f1ebf1bbce793f1bf87d215325 to your computer and use it in GitHub Desktop.
Save jamesratcliffe/c65d17f1ebf1bbce793f1bf87d215325 to your computer and use it in GitHub Desktop.
Install Laravel Dependencies in Docker
docker run --rm --interactive --tty \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php74-composer:latest \
touch .composer && composer install --ignore-platform-reqs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment