Composer provides dependency management in PHP, this Dockerfile has been inspired by the work done by Rob Loach at https://github.com/RobLoach/docker-composer but the images haven't been refreshed on Docker Hub in a long time, which resulted in PHP7.1 being unable to use these files.
docker pull luciam91/composer
docker run -it --rm -v $(pwd):/app -u $UID luciam91/composer init
If you are using SSH to install your packages either mount your entire home directory, or at least the .ssh directory to /root
docker run -ti --rm -v $(pwd):/app -v $HOME/.ssh:/root/.ssh -u $UID luciam91/composer install
Content type
Image
Digest
Size
29.9 MB
Last updated
over 9 years ago
docker pull luciam91/composer