Composer from PHP7.x alpine image
10K+
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/alpine-docker-composer
docker run -it --rm -v $(pwd):/app -u $UID luciam91/alpine-docker-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/alpine-docker-composer install
Content type
Image
Digest
Size
30.3 MB
Last updated
over 8 years ago
docker pull luciam91/alpine-docker-composer