Last active
March 24, 2022 12:48
-
-
Save jamesratcliffe/c65d17f1ebf1bbce793f1bf87d215325 to your computer and use it in GitHub Desktop.
Revisions
-
jamesratcliffe revised this gist
Mar 24, 2022 . 1 changed file with 6 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,6 @@ 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 -
jamesratcliffe created this gist
Mar 24, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ eval $(ssh-agent); \ docker run --rm \ -u "$(id -u):$(id -g)" \ -v $(pwd):/var/www/html \ -w /var/www/html \ --volume $SSH_AUTH_SOCK:/ssh-auth.sock \ --env SSH_AUTH_SOCK=/ssh-auth.sock \ laravelsail/php81-composer:latest \ composer install --ignore-platform-reqs