Skip to content

Instantly share code, notes, and snippets.

@almino
Created July 21, 2020 23:30
Show Gist options
  • Save almino/316d74e6f7f9861b2831b8506f675095 to your computer and use it in GitHub Desktop.
Save almino/316d74e6f7f9861b2831b8506f675095 to your computer and use it in GitHub Desktop.
PHP Composer on a Docker container
function composer
docker run -it --rm --user 1000:33 -v "$PWD":/app -v "$HOME/.composer":/tmp -w /app composer $argv
end
FROM composer
RUN chown -Rf 1000:33 /tmp \
&& composer global require hirak/prestissimo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment