You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 13, 2019. It is now read-only.
Folks, trying to run a throw-away container with php7.1
docker run --rm -v $(pwd):/app composer/composer:php7 install
However, I see errors thrown such as:
Problem 1
- Installation request for doctrine/annotations v1.5.0 -> satisfiable by doctrine/annotations[v1.5.0].
- doctrine/annotations v1.5.0 requires php ^7.1 -> your PHP version (7.0.7) does not satisfy that requirement.
Problem 2
- Installation request for doctrine/cache v1.7.0 -> satisfiable by doctrine/cache[v1.7.0].
- doctrine/cache v1.7.0 requires php ~7.1 -> your PHP version (7.0.7) does not satisfy that requirement.
I'm not able to find the proper tag, how do i get php 7.1? Thanks!
Super quick solution: docker run --rm -v $(pwd):/app prooph/composer:7.1 install .
Folks, trying to run a throw-away container with php7.1
docker run --rm -v $(pwd):/app composer/composer:php7 installHowever, I see errors thrown such as:
I'm not able to find the proper tag, how do i get php 7.1? Thanks!
Super quick solution:
docker run --rm -v $(pwd):/app prooph/composer:7.1 install.